Home
last modified time | relevance | path

Searched refs:inIdx (Results 1 – 2 of 2) sorted by relevance

/cts/hostsidetests/securitybulletin/securityPatch/CVE-2020-0470/
Dpoc.cpp75 ssize_t inIdx = in main() local
77 if (inIdx >= 0) { in main()
80 uint8_t *buf = AMediaCodec_getInputBuffer(codec, inIdx, &bufSize); in main()
91 status = AMediaCodec_queueInputBuffer(codec, inIdx, 0, bytesRead, 0, bufferFlags); in main()
96 } else if (inIdx == AMEDIACODEC_INFO_TRY_AGAIN_LATER) { in main()
/cts/common/device-side/util-axt/src/com/android/compatibility/common/util/
DMediaUtils.java1283 int inIdx = decoder.dequeueInputBuffer(kTimeOutUs); in verifyDecoder() local
1284 if (inIdx >= 0) { in verifyDecoder()
1285 ByteBuffer buffer = decoder.getInputBuffer(inIdx); in verifyDecoder()
1289 decoder.queueInputBuffer(inIdx, 0, 0, 0, flagEOS); in verifyDecoder()
1292 decoder.queueInputBuffer(inIdx, 0, sampleSize, ex.getSampleTime(), 0); in verifyDecoder()