/cts/tests/tests/media/src/android/media/cts/ |
DecoderTestAacDrc.java | 458 int inputBufIndex = codec.dequeueInputBuffer(kTimeOutUs); 460 if (inputBufIndex >= 0) { 461 ByteBuffer dstBuf = codecInputBuffers[inputBufIndex]; 483 inputBufIndex,
|
EncodeVirtualDisplayTest.java | 431 int inputBufIndex = decoder.dequeueInputBuffer(-1); 432 ByteBuffer inputBuf = decoderInputBuffers[inputBufIndex]; 435 decoder.queueInputBuffer(inputBufIndex, 0, info.size,
|
DecodeEditEncodeTest.java | 476 int inputBufIndex = decoder.dequeueInputBuffer(TIMEOUT_USEC); 477 if (inputBufIndex >= 0) { 480 decoder.queueInputBuffer(inputBufIndex, 0, 0, 0L, 487 ByteBuffer inputBuf = decoderInputBuffers[inputBufIndex]; 492 decoder.queueInputBuffer(inputBufIndex, 0, inputBuf.position(), 671 int inputBufIndex = decoder.dequeueInputBuffer(TIMEOUT_USEC); 672 if (inputBufIndex >= 0) { 675 decoder.queueInputBuffer(inputBufIndex, 0, 0, 0L, 682 ByteBuffer inputBuf = decoderInputBuffers[inputBufIndex]; 687 decoder.queueInputBuffer(inputBufIndex, 0, inputBuf.position() [all...] |
EncodeDecodeTest.java | 672 int inputBufIndex = encoder.dequeueInputBuffer(TIMEOUT_USEC); 673 if (VERBOSE) Log.d(TAG, "inputBufIndex=" + inputBufIndex); 674 if (inputBufIndex >= 0) { 680 encoder.queueInputBuffer(inputBufIndex, 0, 0, ptsUsec, 687 ByteBuffer inputBuf = encoder.getInputBuffer(inputBufIndex); 693 encoder.queueInputBuffer(inputBufIndex, 0, frameData.length, ptsUsec, 0); [all...] |
ImageReaderDecoderTest.java | 498 int inputBufIndex = decoder.dequeueInputBuffer(DEFAULT_TIMEOUT_US); 499 if (inputBufIndex >= 0) { 500 ByteBuffer dstBuf = decoderInputBuffers[inputBufIndex]; 505 + inputBufIndex + "/" + sampleSize); 518 inputBufIndex, [all...] |
VideoDecoderPerfTest.java | 238 int inputBufIndex = codec.dequeueInputBuffer(kTimeOutUs); 240 if (inputBufIndex >= 0) { 241 ByteBuffer dstBuf = codecInputBuffers[inputBufIndex]; 259 inputBufIndex, 266 "codec.dequeueInputBuffer() unrecognized return value: " + inputBufIndex, 267 MediaCodec.INFO_TRY_AGAIN_LATER, inputBufIndex); [all...] |
VpxCodecTestBase.java | 584 int inputBufIndex = decoder.dequeueInputBuffer(DEFAULT_DEQUEUE_TIMEOUT_US); 585 if (inputBufIndex >= 0) { 593 inputBuffers[inputBufIndex].clear(); 594 inputBuffers[inputBufIndex].put(frame); 595 inputBuffers[inputBufIndex].rewind(); 599 inputBufIndex, [all...] |
/device/google/marlin/camera/QCamera2/HAL3/ |
QCamera3Channel.cpp | [all...] |
/cts/tests/video/src/android/video/cts/ |
VideoEncoderDecoderTest.java | [all...] |