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

Unified Diff: media/filters/pipeline_integration_test_base.cc

Issue 377993003: Small cleaups to media to support disabling ozone and libvpx properly. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 5 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
« no previous file with comments | « no previous file | media/media.gyp » ('j') | media/media.gyp » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/filters/pipeline_integration_test_base.cc
diff --git a/media/filters/pipeline_integration_test_base.cc b/media/filters/pipeline_integration_test_base.cc
index c29b62445bf00b7446cc709fc29a8a6e4ff28067..2d92e55accfe6fdb0d58ccca466cbe0046386eae 100644
--- a/media/filters/pipeline_integration_test_base.cc
+++ b/media/filters/pipeline_integration_test_base.cc
@@ -246,8 +246,10 @@ PipelineIntegrationTestBase::CreateFilterCollection(
collection->SetDemuxer(demuxer_.get());
ScopedVector<VideoDecoder> video_decoders;
+#if !defined(MEDIA_DISABLE_LIBVPX)
video_decoders.push_back(
new VpxVideoDecoder(message_loop_.message_loop_proxy()));
+#endif // !defined(MEDIA_DISABLE_LIBVPX)
scherkus (not reviewing) 2014/07/08 21:10:02 is this only to fix compile-time issues? note tha
awong 2014/07/08 21:28:03 Yep. Only a compile-time fix. Should I also wrap t
scherkus (not reviewing) 2014/07/08 21:30:01 I'm OK leaving them as-is.
video_decoders.push_back(
new FFmpegVideoDecoder(message_loop_.message_loop_proxy()));
« no previous file with comments | « no previous file | media/media.gyp » ('j') | media/media.gyp » ('J')

Powered by Google App Engine
This is Rietveld 408576698