Home | History | Annotate | Download | only in com.example.android.common.media

Lines Matching refs:mDecoder

56     private MediaCodec mDecoder;
80 mDecoder = codec;
93 mDecoder.stop();
94 mDecoder.release();
95 mDecoder = null;
212 mDecoder.queueInputBuffer(index, 0, size, presentationTimeUs, flags);
214 mDecoder.queueSecureInputBuffer(index, 0, crypto, presentationTimeUs, flags);
261 mDecoder.queueInputBuffer(index, 0, size, presentationTimeUs, flags);
264 mDecoder.queueSecureInputBuffer(index, 0, cryptoInfo, presentationTimeUs, flags);
320 mDecoder.releaseOutputBuffer(index, render);
334 while ((index = mDecoder.dequeueInputBuffer(0)) != MediaCodec.INFO_TRY_AGAIN_LATER) {
342 while ((index = mDecoder.dequeueOutputBuffer(info, 0)) != MediaCodec.INFO_TRY_AGAIN_LATER) {
345 mOutputBuffers = mDecoder.getOutputBuffers();
356 mDecoder.getOutputFormat());