/external/chromium_org/content/common/gpu/media/ |
exynos_video_decode_accelerator.cc | 194 decoder_thread_("ExynosDecoderThread"), 221 DCHECK(!decoder_thread_.IsRunning()); 347 if (!decoder_thread_.Start()) { 367 decoder_thread_.message_loop()->PostTask(FROM_HERE, base::Bind( 473 decoder_thread_.message_loop()->PostTask(FROM_HERE, base::Bind( 481 decoder_thread_.message_loop()->PostTask(FROM_HERE, base::Bind( 488 decoder_thread_.message_loop()->PostTask(FROM_HERE, base::Bind( 500 if (decoder_thread_.IsRunning()) { 501 decoder_thread_.message_loop()->PostTask(FROM_HERE, base::Bind( 504 // DestroyTask() will cause the decoder_thread_ to flush all tasks [all...] |
vaapi_video_decode_accelerator.h | 251 base::Thread decoder_thread_; member in class:content::VaapiVideoDecodeAccelerator 252 // Use this to post tasks to |decoder_thread_| instead of 253 // |decoder_thread_.message_loop()| because the latter will be NULL once 254 // |decoder_thread_.Stop()| returns.
|
exynos_video_decode_accelerator.h | 45 // They post tasks to the decoder_thread_, which actually services the task 48 // * The decoder_thread_, owned by this class. It services API tasks, through 54 // decoder_thread_ when something interesting happens. 55 // TODO(sheu): replace this thread with an TYPE_IO decoder_thread_. 59 // the decoder_thread_, so there are no synchronization issues. 272 // Set the decoder_thread_ state (using PostTask to decoder thread, if 277 // Other utility functions. Called on decoder_thread_, unless 278 // decoder_thread_ is not yet started, in which case the child thread can call 324 // Decoder state, owned and operated by decoder_thread_. 325 // Before decoder_thread_ has started, the decoder state is managed b 332 base::Thread decoder_thread_; member in class:content::ExynosVideoDecodeAccelerator [all...] |
vaapi_video_decode_accelerator.cc | 256 decoder_thread_("VaapiDecoderThread"), 330 CHECK(decoder_thread_.Start()); 331 decoder_thread_proxy_ = decoder_thread_.message_loop_proxy(); 916 // Post a dummy task to the decoder_thread_ to ensure it is drained. 923 decoder_thread_.Stop();
|
/external/chromium_org/content/renderer/media/ |
rtc_video_decoder_factory_tv_unittest.cc | 32 decoder_thread_("Test decoder thread"), 40 decoder_thread_.Start(); 53 decoder_thread_.Stop(); 128 base::PostTaskAndReplyWithResult(decoder_thread_.message_loop_proxy(), 134 decoder_thread_.message_loop_proxy(), 160 decoder_thread_.message_loop_proxy(), 179 base::Thread decoder_thread_; member in class:content::RTCVideoDecoderFactoryTvTest 213 base::PostTaskAndReplyWithResult(decoder_thread_.message_loop_proxy(), 224 base::PostTaskAndReplyWithResult(decoder_thread_.message_loop_proxy(),
|