From e1b0d4a25324db201aee059fb0a25c2a2fb6b88f Mon Sep 17 00:00:00 2001 From: Dongwon Kang Date: Wed, 22 Aug 2018 08:20:30 -0700 Subject: [PATCH] Fix a typo in javadoc. Test: javadoc fix. Bug: 112882126 Change-Id: I69f55aaa49103690a796ff394fcd1934891a52f2 --- media/java/android/media/MediaCodec.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/media/java/android/media/MediaCodec.java b/media/java/android/media/MediaCodec.java index 2207a2a6d4fe1..bb7b0380f07de 100644 --- a/media/java/android/media/MediaCodec.java +++ b/media/java/android/media/MediaCodec.java @@ -404,7 +404,7 @@ import java.util.Map;

The codec in turn will return a read-only output buffer via the {@link Callback#onOutputBufferAvailable onOutputBufferAvailable} callback in asynchronous mode, or in - response to a {@link #dequeueOutputBuffer dequeuOutputBuffer} call in synchronous mode. After the + response to a {@link #dequeueOutputBuffer dequeueOutputBuffer} call in synchronous mode. After the output buffer has been processed, call one of the {@link #releaseOutputBuffer releaseOutputBuffer} methods to return the buffer to the codec.