Class 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.
    • 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 unappliedRotationDegrees
        Deprecated.
        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 TextureView can apply the rotation by calling TextureView.setTransform(android.graphics.Matrix).

      • pixelWidthHeightRatio

        @FloatRange(from=0.0,
                    fromInclusive=false)
        public final float pixelWidthHeightRatio
        Deprecated.
        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.

    • 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. See unappliedRotationDegrees.
        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

      • equals

        public boolean equals​(@Nullable
                              Object obj)
        Deprecated.
        Overrides:
        equals in class Object
      • hashCode

        public int hashCode()
        Deprecated.
        Overrides:
        hashCode in class Object
      • toBundle

        public Bundle toBundle()
        Deprecated.
        Description copied from interface: Bundleable
        Returns a Bundle representing the information stored in this object.
        Specified by:
        toBundle in interface Bundleable