Home
last modified time | relevance | path

Searched refs:mDecoderThread (Results 1 – 5 of 5) sorted by relevance

/aosp_15_r20/external/v4l2_codec2/components/
H A DDecodeComponent.cpp140 if (mDecoderThread.IsRunning() && !mDecoderTaskRunner->RunsTasksInCurrentSequence()) { in ~DecodeComponent()
143 mDecoderThread.Stop(); in ~DecodeComponent()
158 if (!mDecoderThread.Start()) { in start()
162 mDecoderTaskRunner = mDecoderThread.task_runner(); in start()
222 if (mDecoderThread.IsRunning()) { in stop()
225 mDecoderThread.Stop(); in stop()
258 if (mDecoderThread.IsRunning()) { in release()
261 mDecoderThread.Stop(); in release()
295 if (!mDecoderThread.IsRunning()) { in setListener_vb()
/aosp_15_r20/packages/apps/TV/tuner/sampletunertvinput/src/com/android/tv/samples/sampletunertvinput/
DSampleTunerTvInputService.java98 private Thread mDecoderThread; field in SampleTunerTvInputService.TvInputSessionImpl
117 if (mDecoderThread != null) { in onRelease()
118 mDecoderThread.interrupt(); in onRelease()
119 mDecoderThread = null; in onRelease()
176 mDecoderThread = in onTune()
180 mDecoderThread.start(); in onTune()
/aosp_15_r20/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/decoder/
H A DMediaDecoder.java93 private final Thread mDecoderThread; field in MediaDecoder
142 mDecoderThread = new Thread(this); in MediaDecoder()
173 mDecoderThread.start(); in start()
183 mDecoderThread.interrupt(); in stop()
/aosp_15_r20/development/samples/VirtualDeviceManager/common/src/com/example/android/vdmdemo/common/
H A DVideoManager.java69 private DecoderThread mDecoderThread; field in VideoManager
158 mDecoderThread.exit(); in stop()
209 mDecoderThread = new DecoderThread(); in startDecoding()
210 mDecoderThread.start(); in startDecoding()
/aosp_15_r20/external/v4l2_codec2/components/include/v4l2_codec2/components/
H A DDecodeComponent.h141 ::base::Thread mDecoderThread{"DecodeComponentDecoderThread"};