From e3a57146d232eac6485ea3effd8f804339a6a7e2 Mon Sep 17 00:00:00 2001 From: andrewlewis Date: Thu, 23 Feb 2017 08:03:59 -0800 Subject: [PATCH] Fix BufferProcessor.queueEndOfStream javadoc ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=148344328 --- .../android/exoplayer2/audio/BufferProcessor.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/library/src/main/java/com/google/android/exoplayer2/audio/BufferProcessor.java b/library/src/main/java/com/google/android/exoplayer2/audio/BufferProcessor.java index d75eeb356f..c31823fd3b 100644 --- a/library/src/main/java/com/google/android/exoplayer2/audio/BufferProcessor.java +++ b/library/src/main/java/com/google/android/exoplayer2/audio/BufferProcessor.java @@ -85,11 +85,11 @@ public interface BufferProcessor { void queueInput(ByteBuffer buffer); /** - * Queues an end of stream signal and begins draining any pending output from this processor. - * After this method has been called, {@link #queueInput(ByteBuffer)} may not be called until - * after the next call to {@link #flush()}. Calling {@link #getOutput()} will return any remaining - * output data. Multiple calls may be required to read all of the remaining output data. - * {@link #isEnded()} will return {@code true} once all remaining output data has been read. + * Queues an end of stream signal. After this method has been called, + * {@link #queueInput(ByteBuffer)} may not be called until after the next call to + * {@link #flush()}. Calling {@link #getOutput()} will return any remaining output data. Multiple + * calls may be required to read all of the remaining output data. {@link #isEnded()} will return + * {@code true} once all remaining output data has been read. */ void queueEndOfStream();