Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(352)

Unified Diff: media/filters/gpu_video_decoder.h

Issue 9639005: HW video decode support for --enable-threaded-compositing (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: CR response. Created 8 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: media/filters/gpu_video_decoder.h
diff --git a/media/filters/gpu_video_decoder.h b/media/filters/gpu_video_decoder.h
index f17a4ccd7499d9debfcbe91fd9611ed2b158d0c4..b1d978d5a8936152786b7b038f103fdd53ee66b8 100644
--- a/media/filters/gpu_video_decoder.h
+++ b/media/filters/gpu_video_decoder.h
@@ -54,6 +54,7 @@ class MEDIA_EXPORT GpuVideoDecoder
};
GpuVideoDecoder(MessageLoop* message_loop,
+ MessageLoop* vda_loop,
const scoped_refptr<Factories>& factories);
virtual ~GpuVideoDecoder();
@@ -150,10 +151,10 @@ class MEDIA_EXPORT GpuVideoDecoder
// if they arrive on other loops.
scoped_refptr<base::MessageLoopProxy> gvd_loop_proxy_;
- // Creation message loop (typically the render thread). All calls to vda_
- // must be made on this loop (and beware this loop is paused during the
- // Pause/Flush/Stop dance PipelineImpl::Stop() goes through).
- scoped_refptr<base::MessageLoopProxy> render_loop_proxy_;
+ // Message loop on which to makes all calls to vda_. (beware this loop may be
+ // paused during the Pause/Flush/Stop dance PipelineImpl::Stop() goes
+ // through).
+ scoped_refptr<base::MessageLoopProxy> vda_loop_proxy_;
scoped_refptr<Factories> factories_;

Powered by Google App Engine
This is Rietveld 408576698