From f630ed1ab50d86e441d70d250a045b27e4822ece Mon Sep 17 00:00:00 2001 From: olly Date: Fri, 22 Nov 2019 16:46:39 +0000 Subject: [PATCH] Fix incorrect Javadoc PiperOrigin-RevId: 281976465 --- .../google/android/exoplayer2/drm/DrmSessionManager.java | 4 ++-- .../com/google/android/exoplayer2/source/SampleQueue.java | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/library/core/src/main/java/com/google/android/exoplayer2/drm/DrmSessionManager.java b/library/core/src/main/java/com/google/android/exoplayer2/drm/DrmSessionManager.java index 4aef731558..146c5d704d 100644 --- a/library/core/src/main/java/com/google/android/exoplayer2/drm/DrmSessionManager.java +++ b/library/core/src/main/java/com/google/android/exoplayer2/drm/DrmSessionManager.java @@ -86,8 +86,8 @@ public interface DrmSessionManager { * DrmSession#release()} to decrement the reference count. * *

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 - * content periods. + * playback of clear content periods. This can reduce the cost of transitioning between clear and + * encrypted content periods. * * @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 diff --git a/library/core/src/main/java/com/google/android/exoplayer2/source/SampleQueue.java b/library/core/src/main/java/com/google/android/exoplayer2/source/SampleQueue.java index d92dd48d4e..1230b45fe4 100644 --- a/library/core/src/main/java/com/google/android/exoplayer2/source/SampleQueue.java +++ b/library/core/src/main/java/com/google/android/exoplayer2/source/SampleQueue.java @@ -332,13 +332,13 @@ public class SampleQueue implements TrackOutput { /** * Attempts to read from the queue. * - *

{@link Format Formats} read from the this method may be associated to a {@link DrmSession} + *

{@link Format Formats} read from this method may be associated to a {@link DrmSession} * through {@link FormatHolder#drmSession}, which is populated in two scenarios: * *

* * @param formatHolder A {@link FormatHolder} to populate in the case of reading a format.