Home
last modified time | relevance | path

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

/frameworks/av/media/ndk/
DNdkMediaCodec.cpp118 sp<AMessage> mAsyncNotify; member
571 if (mData->mAsyncNotify == NULL) { in AMediaCodec_setAsyncNotifyCallback()
572 mData->mAsyncNotify = new AMessage(kWhatAsyncNotify, mData->mHandler); in AMediaCodec_setAsyncNotifyCallback()
582 status_t err = mData->mCodec->setCallback(mData->mAsyncNotify); in AMediaCodec_setAsyncNotifyCallback()
665 if (mData->mAsyncNotify != NULL) { in AMediaCodec_getInputBuffer()
700 if (mData->mAsyncNotify != NULL) { in AMediaCodec_getOutputBuffer()
/frameworks/av/services/camera/libcameraservice/api2/
DHeicCompositeStream.h128 sp<AMessage> mAsyncNotify; variable
DHeicCompositeStream.cpp1362 mAsyncNotify = new AMessage(kWhatCallbackNotify, mCodecCallbackHandler); in initializeCodec()
1363 res = mCodec->setCallback(mAsyncNotify); in initializeCodec()
1449 mAsyncNotify.clear(); in deinitCodec()
/frameworks/av/media/libstagefright/
DMediaCodec.cpp5217 AsyncNotifyPost(const sp<AMessage> &asyncNotify) : mAsyncNotify(asyncNotify) {} in onMessageReceived()
5219 if (mAsyncNotify) { in onMessageReceived()
5220 mAsyncNotify->post(); in onMessageReceived()
5223 void clear() { mAsyncNotify.clear(); } in onMessageReceived()
5225 sp<AMessage> mAsyncNotify; in onMessageReceived() member