Home
last modified time | relevance | path

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

/ohos5.0/foundation/multimedia/av_codec/services/engine/codec/video/hcodec/
H A Dmsg_handle_loop.cpp53 …TimeUs msgProcessTime = (delayUs > INT64_MAX - nowUs) ? INT64_MAX : (nowUs + static_cast<int64_t>(… in SendAsyncMsg() local
54 if (m_msgQueue.find(msgProcessTime) != m_msgQueue.end()) { in SendAsyncMsg()
56 msgProcessTime++; in SendAsyncMsg()
58 m_msgQueue[msgProcessTime] = MsgInfo {type, ASYNC_MSG_ID, msg}; in SendAsyncMsg()
/ohos5.0/foundation/multimedia/image_framework/plugins/common/libs/image/libextplugin/src/hardware/imagecodec/
H A Dmsg_handle_loop.cpp54 TimeUs msgProcessTime = (delayUs > INT64_MAX - nowUs) ? INT64_MAX : (nowUs + delayUs); in SendAsyncMsg() local
55 if (m_msgQueue.find(msgProcessTime) != m_msgQueue.end()) { in SendAsyncMsg()
57 msgProcessTime++; in SendAsyncMsg()
59 m_msgQueue[msgProcessTime] = MsgInfo {type, ASYNC_MSG_ID, msg}; in SendAsyncMsg()
/ohos5.0/foundation/multimedia/media_foundation/src/osal/task/pthread/
H A DtaskInner.cpp267 int64_t msgProcessTime = msgQueue_.begin()->first; in UpdateTop() local
270 if (msgProcessTime <= nowUs || msgProcessTime <= jobProcessTime) { in UpdateTop()
271 topProcessUs_ = msgProcessTime; in UpdateTop()