Formatting and Javadoc updates

This commit is contained in:
tonihei 2023-06-29 10:24:20 +01:00
parent e06c72ba26
commit 58baeeb1bb

View file

@ -28,8 +28,12 @@ public class AdaptationSet {
public static final int ID_UNSET = -1; public static final int ID_UNSET = -1;
/** /**
* A non-negative identifier for the adaptation set that's unique in the scope of its containing * An identifier for the adaptation set that's unique in the scope of its containing period, or
* period, or {@link #ID_UNSET} if not specified. * {@link #ID_UNSET} if not specified.
*
* <p>The identifier has the same value as defined in the manifest. However. the manifest value is
* an unsigned integer and values exceeding {@link Integer#MAX_VALUE} will be represented as
* negative numbers.
*/ */
public final int id; public final int id;