Searched refs:decoder_thread_ (Results 1 - 6 of 6) sorted by relevance

/external/chromium_org/content/common/gpu/media/
H A Dv4l2_video_decode_accelerator.cc167 decoder_thread_("V4L2DecoderThread"),
196 DCHECK(!decoder_thread_.IsRunning());
297 if (!decoder_thread_.Start()) {
304 decoder_thread_.message_loop()->PostTask(
321 decoder_thread_.message_loop()->PostTask(FROM_HERE, base::Bind(
407 decoder_thread_.message_loop()->PostTask(FROM_HERE, base::Bind(
415 decoder_thread_.message_loop()->PostTask(FROM_HERE, base::Bind(
422 decoder_thread_.message_loop()->PostTask(FROM_HERE, base::Bind(
435 if (decoder_thread_.IsRunning()) {
436 decoder_thread_
[all...]
H A Dvt_video_decode_accelerator.cc76 decoder_thread_("VTDecoderThread") {
112 if (!decoder_thread_.Start())
122 DCHECK(decoder_thread_.message_loop_proxy()->BelongsToCurrentThread());
198 decoder_thread_.message_loop_proxy()->PostTask(FROM_HERE, base::Bind(
206 DCHECK(decoder_thread_.message_loop_proxy()->BelongsToCurrentThread());
506 DCHECK(decoder_thread_.message_loop_proxy()->BelongsToCurrentThread());
520 decoder_thread_.message_loop_proxy()->PostTask(FROM_HERE, base::Bind(
H A Dvt_video_decode_accelerator.h85 // Methods for interacting with VideoToolbox. Run on |decoder_thread_|.
162 base::Thread decoder_thread_; member in class:content::VTVideoDecodeAccelerator
H A Dv4l2_video_decode_accelerator.h49 // They post tasks to the decoder_thread_, which actually services the task
52 // * The decoder_thread_, owned by this class. It services API tasks, through
58 // decoder_thread_ when something interesting happens.
59 // TODO(sheu): replace this thread with an TYPE_IO decoder_thread_.
63 // the decoder_thread_, so there are no synchronization issues.
264 // Set the decoder_thread_ state (using PostTask to decoder thread, if
269 // Other utility functions. Called on decoder_thread_, unless
270 // decoder_thread_ is not yet started, in which case the child thread can call
327 // Decoder state, owned and operated by decoder_thread_.
328 // Before decoder_thread_ ha
335 base::Thread decoder_thread_; member in class:content::V4L2VideoDecodeAccelerator
[all...]
H A Dvaapi_video_decode_accelerator.h250 base::Thread decoder_thread_; member in class:content::VaapiVideoDecodeAccelerator
251 // Use this to post tasks to |decoder_thread_| instead of
252 // |decoder_thread_.message_loop()| because the latter will be NULL once
253 // |decoder_thread_.Stop()| returns.
H A Dvaapi_video_decode_accelerator.cc238 decoder_thread_("VaapiDecoderThread"),
320 CHECK(decoder_thread_.Start());
321 decoder_thread_proxy_ = decoder_thread_.message_loop_proxy();
903 // Signal all potential waiters on the decoder_thread_, let them early-exit,
910 decoder_thread_.Stop();

Completed in 531 milliseconds