HomeSort by relevance Sort by last modified time
    Searched refs:decoder_thread_ (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/content/common/gpu/media/
v4l2_video_decode_accelerator.cc 167 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_.message_loop()->PostTask(FROM_HERE, base::Bind
    [all...]
vaapi_video_decode_accelerator.h 250 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.
v4l2_video_decode_accelerator.h 49 // 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_ has started, the decoder state is managed b
335 base::Thread decoder_thread_; member in class:content::V4L2VideoDecodeAccelerator
    [all...]
vaapi_video_decode_accelerator.cc 238 decoder_thread_("VaapiDecoderThread"),
318 CHECK(decoder_thread_.Start());
319 decoder_thread_proxy_ = decoder_thread_.message_loop_proxy();
898 // Signal all potential waiters on the decoder_thread_, let them early-exit,
905 decoder_thread_.Stop();

Completed in 380 milliseconds