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();