Home
last modified time | relevance | path

Searched refs:mDecoderThead (Results 1 – 2 of 2) sorted by relevance

/packages/services/Car/cpp/computepipe/runner/input_manager/
DVideoDecoder.cpp89 mDecoderThead = std::make_unique<std::thread>(&VideoDecoder::decoderThreadFunction, this); in startDecoding()
95 if (mDecoderThead && mDecoderThead->joinable()) { in stopDecoding()
96 mDecoderThead->join(); in stopDecoding()
97 mDecoderThead = nullptr; in stopDecoding()
DVideoDecoder.h79 std::unique_ptr<std::thread> mDecoderThead; variable