Commit f630ed1a by olly Committed by Oliver Woodman

Fix incorrect Javadoc

PiperOrigin-RevId: 281976465
parent abe3c8ce
...@@ -86,8 +86,8 @@ public interface DrmSessionManager<T extends ExoMediaCrypto> { ...@@ -86,8 +86,8 @@ public interface DrmSessionManager<T extends ExoMediaCrypto> {
* DrmSession#release()} to decrement the reference count. * DrmSession#release()} to decrement the reference count.
* *
* <p>Placeholder {@link DrmSession DrmSessions} may be used to configure secure decoders for * <p>Placeholder {@link DrmSession DrmSessions} may be used to configure secure decoders for
* playback of clear samples, which reduces the costs of transitioning between clear and encrypted * playback of clear content periods. This can reduce the cost of transitioning between clear and
* content periods. * encrypted content periods.
* *
* @param playbackLooper The looper associated with the media playback thread. * @param playbackLooper The looper associated with the media playback thread.
* @param trackType The type of the track to acquire a placeholder session for. Must be one of the * @param trackType The type of the track to acquire a placeholder session for. Must be one of the
......
...@@ -332,13 +332,13 @@ public class SampleQueue implements TrackOutput { ...@@ -332,13 +332,13 @@ public class SampleQueue implements TrackOutput {
/** /**
* Attempts to read from the queue. * Attempts to read from the queue.
* *
* <p>{@link Format Formats} read from the this method may be associated to a {@link DrmSession} * <p>{@link Format Formats} read from this method may be associated to a {@link DrmSession}
* through {@link FormatHolder#drmSession}, which is populated in two scenarios: * through {@link FormatHolder#drmSession}, which is populated in two scenarios:
* *
* <ul> * <ul>
* <li>The sample has a {@link Format} with a non-null {@link Format#drmInitData}. * <li>The {@link Format} has a non-null {@link Format#drmInitData}.
* <li>The {@link DrmSessionManager} is configured to use secure decoders for clear samples. See * <li>The {@link DrmSessionManager} provides placeholder sessions for this queue's track type.
* {@link DrmSessionManager#FLAG_PLAY_CLEAR_SAMPLES_WITHOUT_KEYS}. * See {@link DrmSessionManager#acquirePlaceholderSession(Looper, int)}.
* </ul> * </ul>
* *
* @param formatHolder A {@link FormatHolder} to populate in the case of reading a format. * @param formatHolder A {@link FormatHolder} to populate in the case of reading a format.
......
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