Home
last modified time | relevance | path

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

/test/xts/acts/multimedia/media/media_cpp_standard/videoDecEncNdk/src/
DVDecEncNdkSample.cpp257 if (inputLoopDec_ == nullptr) { in StartDec()
258 inputLoopDec_ = make_unique<thread>(&VDecEncNdkSample::InputFuncDec, this); in StartDec()
259 NDK_CHECK_AND_RETURN_RET_LOG(inputLoopDec_ != nullptr, AV_ERR_UNKNOWN, "Fatal: No memory"); in StartDec()
348 if (inputLoopDec_ != nullptr && inputLoopDec_->joinable()) { in ReleaseDec()
353 inputLoopDec_->join(); in ReleaseDec()
354 inputLoopDec_.reset(); in ReleaseDec()
/test/xts/acts/multimedia/media/media_cpp_standard/audioDecEncNdk/src/
DADecEncNdkSample.cpp191 if (inputLoopDec_ == nullptr) { in StartDec()
192 inputLoopDec_ = make_unique<thread>(&ADecEncNdkSample::InputFuncDec, this); in StartDec()
193 NDK_CHECK_AND_RETURN_RET_LOG(inputLoopDec_ != nullptr, AV_ERR_UNKNOWN, "Fatal: No memory"); in StartDec()
329 if (inputLoopDec_ != nullptr && inputLoopDec_->joinable()) { in ReleaseDec()
334 inputLoopDec_->join(); in ReleaseDec()
335 inputLoopDec_.reset(); in ReleaseDec()
/test/xts/acts/multimedia/media/media_cpp_standard/videoDecEncNdk/include/
DVDecEncNdkSample.h124 std::unique_ptr<std::thread> inputLoopDec_; variable
/test/xts/acts/multimedia/media/media_cpp_standard/audioDecEncNdk/include/
DADecEncNdkSample.h122 std::unique_ptr<std::thread> inputLoopDec_; variable