Added javadoc comments to HevcConfig

parent 45db77dc
...@@ -116,11 +116,19 @@ public final class HevcConfig { ...@@ -116,11 +116,19 @@ public final class HevcConfig {
* @see com.google.android.exoplayer2.Format#initializationData * @see com.google.android.exoplayer2.Format#initializationData
*/ */
@Nullable public final List<byte[]> initializationData; @Nullable public final List<byte[]> initializationData;
/** The length of the NAL unit length field in the bitstream's container, in bytes. */ /** The length of the NAL unit length field in the bitstream's container, in bytes. */
public final int nalUnitLengthFieldLength; public final int nalUnitLengthFieldLength;
/** The width of the encoded picture in luma samples. */
public final int width; public final int width;
/** The height of the encoded picture in luma samples. */
public final int height; public final int height;
/** The pixel aspect ratio. */
public final float pixelWidthHeightRatio; public final float pixelWidthHeightRatio;
/** /**
* An RFC 6381 codecs string representing the video format, or {@code null} if not known. * An RFC 6381 codecs string representing the video format, or {@code null} if not known.
* *
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment