Home
last modified time | relevance | path

Searched refs:readThread_ (Results 1 – 11 of 11) sorted by relevance

/ohos5.0/foundation/multimedia/av_codec/services/media_engine/modules/sink/
H A Dsubtitle_sink.cpp46 if (readThread_ != nullptr && readThread_->joinable()) { in ~SubtitleSink()
47 readThread_->join(); in ~SubtitleSink()
48 readThread_ = nullptr; in ~SubtitleSink()
139 readThread_ = std::make_unique<std::thread>(&SubtitleSink::RenderLoop, this); in Start()
140 pthread_setname_np(readThread_->native_handle(), "SubtitleRenderLoop"); in Start()
/ohos5.0/foundation/ai/intelligent_voice_framework/services/intell_voice_engine/server/base/
H A Dfile_source.cpp73 readThread_ = std::move(t1); in Start()
118 readThread_.join(); in Stop()
H A Daudio_source.cpp83 readThread_ = std::move(t1); in Start()
136 readThread_.join(); in Stop()
H A Dfile_source.h55 std::thread readThread_; variable
H A Daudio_source.h56 std::thread readThread_; variable
/ohos5.0/foundation/multimedia/av_codec/services/media_engine/filters/
H A Ddecoder_surface_filter.cpp161 if (readThread_ != nullptr && readThread_->joinable()) { in ~DecoderSurfaceFilter()
162 readThread_->join(); in ~DecoderSurfaceFilter()
163 readThread_ = nullptr; in ~DecoderSurfaceFilter()
272 readThread_ = std::make_unique<std::thread>(&DecoderSurfaceFilter::RenderLoop, this); in DoStart()
273 pthread_setname_np(readThread_->native_handle(), "RenderLoop"); in DoStart()
355 if (readThread_ != nullptr && readThread_->joinable()) { in DoStop()
356 readThread_->join(); in DoStop()
357 readThread_ = nullptr; in DoStop()
/ohos5.0/foundation/ai/intelligent_voice_framework/services/intell_voice_engine/server/wakeup/headset/
H A Dheadset_wakeup_engine_impl.h86 std::thread readThread_; variable
H A Dheadset_wakeup_engine_impl.cpp295 readThread_ = std::move(t1); in StartAudioSource()
306 readThread_.join(); in StopAudioSource()
/ohos5.0/foundation/multimedia/av_codec/interfaces/inner_api/native/
H A Dsubtitle_sink.h84 std::unique_ptr<std::thread> readThread_ = nullptr; variable
H A Ddecoder_surface_filter.h157 std::unique_ptr<std::thread> readThread_ = nullptr; variable
/ohos5.0/foundation/multimedia/av_codec/test/unittest/filter_test/
H A Ddecoder_surface_filter_unit_test.cpp202 decoderSurfaceFilter_->readThread_ =