Searched refs:queueIndex (Results 1 - 5 of 5) sorted by relevance
/foundation/multimedia/av_codec/services/media_engine/plugins/ffmpeg_adapter/demuxer/ |
H A D | block_queue_pool.cpp | 127 void BlockQueuePool::ResetQueue(uint32_t queueIndex) in ResetQueue() argument 129 if (quePool_.count(queueIndex) == 0) { in ResetQueue() 130 MEDIA_LOG_D("Error queueIndex"); in ResetQueue() 133 auto blockQue = quePool_[queueIndex].blockQue; in ResetQueue() 138 quePool_[queueIndex].dataSize = 0; in ResetQueue() 139 quePool_[queueIndex].isValid = true; in ResetQueue() 143 void BlockQueuePool::FreeQueue(uint32_t queueIndex) in FreeQueue() argument 146 ResetQueue(queueIndex); in FreeQueue() 147 quePool_[queueIndex].blockQue = nullptr; in FreeQueue() 298 bool BlockQueuePool::InnerQueueIsFull(uint32_t queueIndex) in InnerQueueIsFull() argument [all...] |
H A D | block_queue_pool.h | 62 void FreeQueue(uint32_t queueIndex); 83 bool InnerQueueIsFull(uint32_t queueIndex); 85 void ResetQueue(uint32_t queueIndex);
|
/foundation/multimedia/av_codec/services/media_engine/modules/demuxer/ |
H A D | media_demuxer.cpp | 1540 bool MediaDemuxer::GetBufferFromUserQueue(uint32_t queueIndex, uint32_t size) in GetBufferFromUserQueue() argument 1542 MEDIA_LOG_D("In, queue: " PUBLIC_LOG_U32 ", size: " PUBLIC_LOG_U32, queueIndex, size); in GetBufferFromUserQueue() 1543 FALSE_RETURN_V_MSG_E(bufferQueueMap_.count(queueIndex) > 0 && bufferQueueMap_[queueIndex] != nullptr, false, in GetBufferFromUserQueue() 1544 "BufferQueue " PUBLIC_LOG_D32 " is nullptr", queueIndex); in GetBufferFromUserQueue() 1548 Status ret = bufferQueueMap_[queueIndex]->RequestBuffer(bufferMap_[queueIndex], avBufferConfig, in GetBufferFromUserQueue() 1551 requestBufferErrorCountMap_[queueIndex]++; in GetBufferFromUserQueue() 1552 if (requestBufferErrorCountMap_[queueIndex] % 5 == 0) { // log per 5 times fail in GetBufferFromUserQueue() 1554 ", errorCnt:" PUBLIC_LOG_U32, queueIndex, (int32_ in GetBufferFromUserQueue() [all...] |
H A D | media_demuxer.h | 198 bool GetBufferFromUserQueue(uint32_t queueIndex, uint32_t size = 0);
|
/foundation/graphic/graphic_3d/lume/LumeRender/src/vulkan/ |
H A D | device_vk.cpp | 438 idx, // queueIndex in EmplaceDeviceQueue() 1047 const auto getSpecificQueue = [](const uint32_t queueIndex, const GpuQueue::QueueType queueType, in GetValidGpuQueue() 1050 if (queueIndex < queueCount) { in GetValidGpuQueue() 1051 return GpuQueue { queueType, queueIndex }; in GetValidGpuQueue() 1129 const auto getSpecificQueue = [](const uint32_t queueIndex, const vector<LowLevelGpuQueueVk>& specificQueues, in GetGpuQueue() 1132 if (queueIndex < queueCount) { in GetGpuQueue() 1133 return specificQueues[queueIndex]; in GetGpuQueue()
|
Completed in 7 milliseconds