Home
last modified time | relevance | path

Searched refs:mCbOutputQueue (Results 1 – 3 of 3) sorted by relevance

/cts/tests/media/jni/
DNativeCodecTestBase.cpp77 mCbOutputQueue.push_back(element); in pushToOutputList()
100 if (mCbOutputQueue.empty()) { in getOutput()
103 element = mCbOutputQueue.front(); in getOutput()
104 mCbOutputQueue.pop_front(); in getOutput()
115 if (mCbInputQueue.empty() && mCbOutputQueue.empty()) { in getWork()
118 if (!mCbOutputQueue.empty()) { in getWork()
119 element = mCbOutputQueue.front(); in getWork()
120 mCbOutputQueue.pop_front(); in getWork()
140 mCbOutputQueue.clear(); in clearQueues()
DNativeCodecTestBase.h61 std::list<callbackObject> mCbOutputQueue; variable
/cts/tests/media/src/android/mediav2/cts/
DCodecTestBase.java65 private final LinkedList<Pair<Integer, MediaCodec.BufferInfo>> mCbOutputQueue; field in CodecAsyncHandler
72 mCbOutputQueue = new LinkedList<>(); in CodecAsyncHandler()
80 mCbOutputQueue.clear(); in clearQueues()
105 mCbOutputQueue.add(new Pair<>(bufferIndex, info)); in onOutputBufferAvailable()
153 if (mCbOutputQueue.isEmpty()) { in getOutput()
156 element = mCbOutputQueue.remove(0); in getOutput()
168 if (mCbInputQueue.isEmpty() && mCbOutputQueue.isEmpty()) { in getWork()
171 if (!mCbOutputQueue.isEmpty()) { in getWork()
172 element = mCbOutputQueue.remove(0); in getWork()