Searched refs:mBufferInfo (Results 1 – 2 of 2) sorted by relevance
828 private MediaCodec.BufferInfo mBufferInfo; field in VpxCodecTestBase.MediaEncoderAsync1019 mBufferInfo = new MediaCodec.BufferInfo(); in createCodecInternal()1116 int result = mCodec.dequeueOutputBuffer(mBufferInfo, mTimeout); in getOutputInternal()1124 result = mCodec.dequeueOutputBuffer(mBufferInfo, mTimeout); in getOutputInternal()1132 mOutput.buffer = new byte[mBufferInfo.size]; in getOutputInternal()1134 outputBuffer.position(mBufferInfo.offset); in getOutputInternal()1135 outputBuffer.get(mOutput.buffer, 0, mBufferInfo.size); in getOutputInternal()1136 mOutPresentationTimeUs = mBufferInfo.presentationTimeUs; in getOutputInternal()1139 if ((mBufferInfo.flags & MediaCodec.BUFFER_FLAG_CODEC_CONFIG) != 0) { in getOutputInternal()1142 if ((mBufferInfo.flags & MediaCodec.BUFFER_FLAG_SYNC_FRAME) != 0) { in getOutputInternal()[all …]
86 private MediaCodec.BufferInfo mBufferInfo = new MediaCodec.BufferInfo(); field in ImageReaderDecoderTest