Home
last modified time | relevance | path

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

/ohos5.0/foundation/distributedhardware/distributed_screen/services/screentransport/screensinkprocessor/decoder/src/
H A Dimage_sink_decoder.cpp396 while (videoDataQueue_.size() >= DATA_QUEUE_MAX_SIZE) { in InputScreenData()
398 videoDataQueue_.pop(); in InputScreenData()
400 videoDataQueue_.push(data); in InputScreenData()
463 std::queue<std::shared_ptr<DataBuffer>>().swap(videoDataQueue_); in StopInputThread()
483 return (!videoDataQueue_.empty() && !availableInputIndexsQueue_.empty() && in DecodeScreenData()
491 …if (videoDataQueue_.empty() || availableInputIndexsQueue_.empty() || availableInputBufferQueue_.em… in DecodeScreenData()
497 screenData = videoDataQueue_.front(); in DecodeScreenData()
498 videoDataQueue_.pop(); in DecodeScreenData()
/ohos5.0/foundation/distributedhardware/distributed_screen/services/screentransport/test/unittest/screensinkprocessor/src/
H A Dimage_sink_decoder_test.cpp341 imageDecoder_->videoDataQueue_.push(data);
344 std::queue<std::shared_ptr<DataBuffer>>().swap(imageDecoder_->videoDataQueue_);
526 imageDecoder_->videoDataQueue_.push(data);
/ohos5.0/foundation/distributedhardware/distributed_screen/services/screentransport/screensinkprocessor/decoder/include/
H A Dimage_sink_decoder.h101 std::queue<std::shared_ptr<DataBuffer>> videoDataQueue_; variable