Home
last modified time | relevance | path

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

/test/xts/acts/multimedia/media/media_cpp_standard/videoDecEncNdk/src/
DVDecEncNdkSample.cpp590 if (outputLoopEnc_ == nullptr) { in StartEnc()
591 outputLoopEnc_ = make_unique<thread>(&VDecEncNdkSample::OutputFuncEnc, this); in StartEnc()
592 NDK_CHECK_AND_RETURN_RET_LOG(outputLoopEnc_ != nullptr, AV_ERR_UNKNOWN, "Fatal: No memory"); in StartEnc()
659 if (outputLoopEnc_ != nullptr && outputLoopEnc_->joinable()) { in ReleaseEnc()
664 outputLoopEnc_->join(); in ReleaseEnc()
665 outputLoopEnc_.reset(); in ReleaseEnc()
/test/xts/acts/multimedia/media/media_cpp_standard/audioDecEncNdk/src/
DADecEncNdkSample.cpp468 if (outputLoopEnc_ == nullptr) { in StartEnc()
469 outputLoopEnc_ = make_unique<thread>(&ADecEncNdkSample::OutputFuncEnc, this); in StartEnc()
470 NDK_CHECK_AND_RETURN_RET_LOG(outputLoopEnc_ != nullptr, AV_ERR_UNKNOWN, "Fatal: No memory"); in StartEnc()
569 if (outputLoopEnc_ != nullptr && outputLoopEnc_->joinable()) { in ReleaseEnc()
574 outputLoopEnc_->join(); in ReleaseEnc()
575 outputLoopEnc_.reset(); in ReleaseEnc()
/test/xts/acts/multimedia/media/media_cpp_standard/videoDecEncNdk/include/
DVDecEncNdkSample.h134 std::unique_ptr<std::thread> outputLoopEnc_; variable
/test/xts/acts/multimedia/media/media_cpp_standard/audioDecEncNdk/include/
DADecEncNdkSample.h132 std::unique_ptr<std::thread> outputLoopEnc_; variable