HomeSort by relevance Sort by last modified time
    Searched refs:inputBufIndex (Results 1 - 7 of 7) sorted by null

  /cts/tests/tests/media/src/android/media/cts/
Vp8EncoderTest.java 150 int inputBufIndex = decoder.dequeueInputBuffer(DEFAULT_TIMEOUT_US);
151 if (inputBufIndex >= 0) {
158 mInputBuffers[inputBufIndex].clear();
159 mInputBuffers[inputBufIndex].put(frame);
160 mInputBuffers[inputBufIndex].rewind();
165 inputBufIndex,
254 int inputBufIndex = encoder.dequeueInputBuffer(DEFAULT_TIMEOUT_US);
255 if (inputBufIndex >= 0) {
268 mInputBuffers[inputBufIndex].clear();
269 mInputBuffers[inputBufIndex].put(frame)
    [all...]
DecoderTest.java 218 int inputBufIndex = codec.dequeueInputBuffer(kTimeOutUs);
220 if (inputBufIndex >= 0) {
221 ByteBuffer dstBuf = codecInputBuffers[inputBufIndex];
237 inputBufIndex,
570 int inputBufIndex = codec.dequeueInputBuffer(kTimeOutUs);
572 if (inputBufIndex >= 0) {
573 ByteBuffer dstBuf = codecInputBuffers[inputBufIndex];
597 inputBufIndex,
756 int inputBufIndex = codec.dequeueInputBuffer(kTimeOutUs);
758 if (inputBufIndex >= 0)
    [all...]
EncodeDecodeTest.java 492 int inputBufIndex = encoder.dequeueInputBuffer(TIMEOUT_USEC);
493 if (VERBOSE) Log.d(TAG, "inputBufIndex=" + inputBufIndex);
494 if (inputBufIndex >= 0) {
500 encoder.queueInputBuffer(inputBufIndex, 0, 0, ptsUsec,
507 ByteBuffer inputBuf = encoderInputBuffers[inputBufIndex];
513 encoder.queueInputBuffer(inputBufIndex, 0, frameData.length, ptsUsec, 0);
584 int inputBufIndex = decoder.dequeueInputBuffer(-1);
585 ByteBuffer inputBuf = decoderInputBuffers[inputBufIndex];
588 decoder.queueInputBuffer(inputBufIndex, 0, info.size
    [all...]
DecodeEditEncodeTest.java 477 int inputBufIndex = decoder.dequeueInputBuffer(TIMEOUT_USEC);
478 if (inputBufIndex >= 0) {
481 decoder.queueInputBuffer(inputBufIndex, 0, 0, 0L,
488 ByteBuffer inputBuf = decoderInputBuffers[inputBufIndex];
493 decoder.queueInputBuffer(inputBufIndex, 0, inputBuf.position(),
670 int inputBufIndex = decoder.dequeueInputBuffer(TIMEOUT_USEC);
671 if (inputBufIndex >= 0) {
674 decoder.queueInputBuffer(inputBufIndex, 0, 0, 0L,
681 ByteBuffer inputBuf = decoderInputBuffers[inputBufIndex];
686 decoder.queueInputBuffer(inputBufIndex, 0, inputBuf.position()
    [all...]
EncodeVirtualDisplayTest.java 372 int inputBufIndex = decoder.dequeueInputBuffer(-1);
373 ByteBuffer inputBuf = decoderInputBuffers[inputBufIndex];
376 decoder.queueInputBuffer(inputBufIndex, 0, info.size,
  /external/chromium_org/media/base/android/java/src/org/chromium/media/
WebAudioMediaCodecBridge.java 112 int inputBufIndex = codec.dequeueInputBuffer(TIMEOUT_MICROSECONDS);
114 if (inputBufIndex >= 0) {
115 ByteBuffer dstBuf = codecInputBuffers[inputBufIndex];
126 codec.queueInputBuffer(inputBufIndex,
  /cts/suite/cts/deviceTests/videoperf/src/com/android/cts/videoperf/
VideoEncoderDecoderTest.java 365 int inputBufIndex = codec.dequeueInputBuffer(VIDEO_CODEC_WAIT_TIME_US);
367 if (inputBufIndex >= 0) {
368 ByteBuffer dstBuf = codecInputBuffers[inputBufIndex];
374 inputBufIndex,

Completed in 253 milliseconds