Class VideoSize
- java.lang.Object
-
- com.google.android.exoplayer2.video.VideoSize
-
- All Implemented Interfaces:
Bundleable
@Deprecated public final class VideoSize extends Object implements Bundleable
Deprecated.com.google.android.exoplayer2 is deprecated. Please migrate to androidx.media3 (which contains the same ExoPlayer code). See the migration guide for more details, including a script to help with the migration.Represents the video size.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface com.google.android.exoplayer2.Bundleable
Bundleable.Creator<T extends Bundleable>
-
-
Field Summary
Fields Modifier and Type Field Description static Bundleable.Creator<VideoSize>CREATORDeprecated.intheightDeprecated.The video height in pixels, 0 when unknown.floatpixelWidthHeightRatioDeprecated.The width to height ratio of each pixel, 1 if unknown.intunappliedRotationDegreesDeprecated.Clockwise rotation in degrees that the application should apply for the video for it to be rendered in the correct orientation.static VideoSizeUNKNOWNDeprecated.intwidthDeprecated.The video width in pixels, 0 when unknown.
-
Constructor Summary
Constructors Constructor Description VideoSize(int width, int height)Deprecated.Creates a VideoSize without unapplied rotation or anamorphic content.VideoSize(int width, int height, int unappliedRotationDegrees, float pixelWidthHeightRatio)Deprecated.Creates a new instance.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description booleanequals(Object obj)Deprecated.inthashCode()Deprecated.BundletoBundle()Deprecated.Returns aBundlerepresenting the information stored in this object.
-
-
-
Field Detail
-
UNKNOWN
public static final VideoSize UNKNOWN
Deprecated.
-
width
@IntRange(from=0L) public final int width
Deprecated.The video width in pixels, 0 when unknown.
-
height
@IntRange(from=0L) public final int height
Deprecated.The video height in pixels, 0 when unknown.
-
unappliedRotationDegrees
@IntRange(from=0L, to=359L) public final int unappliedRotationDegreesDeprecated.Clockwise rotation in degrees that the application should apply for the video for it to be rendered in the correct orientation.Is 0 if unknown or if no rotation is needed.
Player should apply video rotation internally, in which case unappliedRotationDegrees is 0. But when a player can't apply the rotation, for example before API level 21, the unapplied rotation is reported by this field for application to handle.
Applications that use
TextureViewcan apply the rotation by callingTextureView.setTransform(android.graphics.Matrix).
-
pixelWidthHeightRatio
@FloatRange(from=0.0, fromInclusive=false) public final float pixelWidthHeightRatioDeprecated.The width to height ratio of each pixel, 1 if unknown.For the normal case of square pixels this will be equal to 1.0. Different values are indicative of anamorphic content.
-
CREATOR
public static final Bundleable.Creator<VideoSize> CREATOR
Deprecated.
-
-
Constructor Detail
-
VideoSize
public VideoSize(@IntRange(from=0L) int width, @IntRange(from=0L) int height)Deprecated.Creates a VideoSize without unapplied rotation or anamorphic content.- Parameters:
width- The video width in pixels.height- The video height in pixels.
-
VideoSize
public VideoSize(@IntRange(from=0L) int width, @IntRange(from=0L) int height, @IntRange(from=0L,to=359L) int unappliedRotationDegrees, @FloatRange(from=0.0,fromInclusive=false) float pixelWidthHeightRatio)Deprecated.Creates a new instance.- Parameters:
width- The video width in pixels.height- The video height in pixels.unappliedRotationDegrees- Clockwise rotation in degrees that the application should apply for the video for it to be rendered in the correct orientation. SeeunappliedRotationDegrees.pixelWidthHeightRatio- The width to height ratio of each pixel. For the normal case of square pixels this will be equal to 1.0. Different values are indicative of anamorphic content.
-
-
Method Detail
-
toBundle
public Bundle toBundle()
Deprecated.Description copied from interface:BundleableReturns aBundlerepresenting the information stored in this object.- Specified by:
toBundlein interfaceBundleable
-
-