Lines Matching refs:CodecAsyncHandler
26 auto* aSyncHandle = static_cast<CodecAsyncHandler*>(userdata); in onAsyncInputAvailable()
35 auto* aSyncHandle = static_cast<CodecAsyncHandler*>(userdata); in onAsyncOutputAvailable()
42 auto* aSyncHandle = static_cast<CodecAsyncHandler*>(userdata); in onAsyncFormatChanged()
50 auto* aSyncHandle = static_cast<CodecAsyncHandler*>(userdata); in onAsyncError()
56 CodecAsyncHandler::CodecAsyncHandler() { in CodecAsyncHandler() function in CodecAsyncHandler
62 CodecAsyncHandler::~CodecAsyncHandler() { in ~CodecAsyncHandler()
69 void CodecAsyncHandler::pushToInputList(callbackObject element) { in pushToInputList()
75 void CodecAsyncHandler::pushToOutputList(callbackObject element) { in pushToOutputList()
81 callbackObject CodecAsyncHandler::getInput() { in getInput()
96 callbackObject CodecAsyncHandler::getOutput() { in getOutput()
111 callbackObject CodecAsyncHandler::getWork() { in getWork()
132 bool CodecAsyncHandler::isInputQueueEmpty() { in isInputQueueEmpty()
137 void CodecAsyncHandler::clearQueues() { in clearQueues()
143 void CodecAsyncHandler::setOutputFormat(AMediaFormat* format) { in setOutputFormat()
153 AMediaFormat* CodecAsyncHandler::getOutputFormat() { in getOutputFormat()
157 bool CodecAsyncHandler::hasOutputFormatChanged() { in hasOutputFormatChanged()
161 void CodecAsyncHandler::setError(bool status) { in setError()
167 bool CodecAsyncHandler::getError() { in getError()
171 void CodecAsyncHandler::resetContext() { in resetContext()
181 media_status_t CodecAsyncHandler::setCallBack(AMediaCodec* codec, bool isCodecInAsyncMode) { in setCallBack()