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

Lines Matching defs:mDecoder

57     private MediaCodec mDecoder;
81 mDecoder = codec;
94 mDecoder.stop();
95 mDecoder.release();
96 mDecoder = null;
213 mDecoder.queueInputBuffer(index, 0, size, presentationTimeUs, flags);
215 mDecoder.queueSecureInputBuffer(index, 0, crypto, presentationTimeUs, flags);
262 mDecoder.queueInputBuffer(index, 0, size, presentationTimeUs, flags);
265 mDecoder.queueSecureInputBuffer(index, 0, cryptoInfo, presentationTimeUs, flags);
321 mDecoder.releaseOutputBuffer(index, render);
335 while ((index = mDecoder.dequeueInputBuffer(0)) != MediaCodec.INFO_TRY_AGAIN_LATER) {
343 while ((index = mDecoder.dequeueOutputBuffer(info, 0)) != MediaCodec.INFO_TRY_AGAIN_LATER) {
346 mOutputBuffers = mDecoder.getOutputBuffers();
357 mDecoder.getOutputFormat());