Home | History | Annotate | Download | only in media

Lines Matching defs:mDecoder

58     private MediaCodec mDecoder;
79 mDecoder = codec;
92 mDecoder.stop();
93 mDecoder.release();
94 mDecoder = null;
210 mDecoder.queueInputBuffer(index, 0, size, presentationTimeUs, flags);
212 mDecoder.queueSecureInputBuffer(index, 0, crypto, presentationTimeUs, flags);
258 mDecoder.queueInputBuffer(index, 0, size, presentationTimeUs, flags);
261 mDecoder.queueSecureInputBuffer(index, 0, sCryptoInfo, presentationTimeUs, flags);
311 mDecoder.releaseOutputBuffer(index, render);
325 while ((index = mDecoder.dequeueInputBuffer(0)) != MediaCodec.INFO_TRY_AGAIN_LATER) {
333 while ((index = mDecoder.dequeueOutputBuffer(info, 0)) != MediaCodec.INFO_TRY_AGAIN_LATER) {
336 mOutputBuffers = mDecoder.getOutputBuffers();
347 mDecoder.getOutputFormat());