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

Unified Diff: media/test/pipeline_integration_test_base.cc

Issue 1273943002: media: Make GpuMemoryBuffers VideoFrame copies asynchronous. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase on master. Created 5 years, 4 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/test/pipeline_integration_test_base.cc
diff --git a/media/test/pipeline_integration_test_base.cc b/media/test/pipeline_integration_test_base.cc
index cd72c3d69a6068084734381b82ac08facdb5e310..7592ed81b3f6f7947cbe13ff4ed19c9c52be46de 100644
--- a/media/test/pipeline_integration_test_base.cc
+++ b/media/test/pipeline_integration_test_base.cc
@@ -249,8 +249,9 @@ scoped_ptr<Renderer> PipelineIntegrationTestBase::CreateRenderer() {
// Disable frame dropping if hashing is enabled.
scoped_ptr<VideoRenderer> video_renderer(new VideoRendererImpl(
- message_loop_.task_runner(), video_sink_.get(),
- video_decoders.Pass(), false, nullptr, new MediaLog()));
+ message_loop_.task_runner(), message_loop_.task_runner().get(),
+ video_sink_.get(), video_decoders.Pass(), false, nullptr,
+ new MediaLog()));
if (!clockless_playback_) {
audio_sink_ = new NullAudioSink(message_loop_.task_runner());

Powered by Google App Engine
This is Rietveld 408576698