Home
last modified time | relevance | path

Searched refs:mCbInputQueue (Results 1 – 4 of 4) sorted by relevance

/cts/tests/media/jni/
DNativeCodecTestBase.cpp71 mCbInputQueue.push_back(element); in pushToInputList()
85 if (mCbInputQueue.empty()) { in getInput()
88 element = mCbInputQueue.front(); in getInput()
89 mCbInputQueue.pop_front(); in getInput()
115 if (mCbInputQueue.empty() && mCbOutputQueue.empty()) { in getWork()
123 element = mCbInputQueue.front(); in getWork()
124 mCbInputQueue.pop_front(); in getWork()
134 return mCbInputQueue.empty(); in isInputQueueEmpty()
139 mCbInputQueue.clear(); in clearQueues()
DNativeCodecTestBase.h63 std::list<callbackObject> mCbInputQueue; variable
/cts/tests/mediapc/src/android/mediapc/cts/
DCodecTestBase.java55 private final LinkedList<Pair<Integer, MediaCodec.BufferInfo>> mCbInputQueue; field in CodecAsyncHandler
62 mCbInputQueue = new LinkedList<>(); in CodecAsyncHandler()
70 mCbInputQueue.clear(); in clearQueues()
86 mCbInputQueue.add(new Pair<>(bufferIndex, (MediaCodec.BufferInfo) null)); in onInputBufferAvailable()
144 if (mCbInputQueue.isEmpty() && mCbOutputQueue.isEmpty()) { in getWork()
151 if (!mCbInputQueue.isEmpty()) { in getWork()
152 element = mCbInputQueue.remove(0); in getWork()
/cts/tests/media/src/android/mediav2/cts/
DCodecTestBase.java71 private final LinkedList<Pair<Integer, MediaCodec.BufferInfo>> mCbInputQueue; field in CodecAsyncHandler
78 mCbInputQueue = new LinkedList<>(); in CodecAsyncHandler()
86 mCbInputQueue.clear(); in clearQueues()
102 mCbInputQueue.add(new Pair<>(bufferIndex, (MediaCodec.BufferInfo) null)); in onInputBufferAvailable()
145 if (mCbInputQueue.isEmpty()) { in getInput()
148 element = mCbInputQueue.remove(0); in getInput()
175 if (mCbInputQueue.isEmpty() && mCbOutputQueue.isEmpty()) { in getWork()
182 if (!mCbInputQueue.isEmpty()) { in getWork()
183 element = mCbInputQueue.remove(0); in getWork()
194 boolean isEmpty = mCbInputQueue.isEmpty(); in isInputQueueEmpty()