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

Unified Diff: chromecast/media/cma/pipeline/audio_video_pipeline_impl_unittest.cc

Issue 1490613005: media config: expand is_encrypted to a struct. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: one more tweak in chromecast/common Created 5 years 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: chromecast/media/cma/pipeline/audio_video_pipeline_impl_unittest.cc
diff --git a/chromecast/media/cma/pipeline/audio_video_pipeline_impl_unittest.cc b/chromecast/media/cma/pipeline/audio_video_pipeline_impl_unittest.cc
index 981247c0e1cb4614ba0b9ac3e0b595bffb1766c5..40d8e2389fe0107900aebd5e688e0f533d82ff6f 100644
--- a/chromecast/media/cma/pipeline/audio_video_pipeline_impl_unittest.cc
+++ b/chromecast/media/cma/pipeline/audio_video_pipeline_impl_unittest.cc
@@ -81,13 +81,13 @@ void AudioVideoPipelineImplTest::Initialize(
::media::kSampleFormatS16,
::media::CHANNEL_LAYOUT_STEREO,
44100,
- ::media::EmptyExtraData(), false);
+ ::media::EmptyExtraData(), ::media::EncryptionScheme(false));
halliwell 2016/01/13 03:29:41 another example.
dougsteed 2016/02/09 22:58:53 Done.
std::vector<::media::VideoDecoderConfig> video_configs;
video_configs.push_back(::media::VideoDecoderConfig(
::media::kCodecH264, ::media::H264PROFILE_MAIN,
::media::PIXEL_FORMAT_I420, ::media::COLOR_SPACE_UNSPECIFIED,
gfx::Size(640, 480), gfx::Rect(0, 0, 640, 480), gfx::Size(640, 480),
- ::media::EmptyExtraData(), false));
+ ::media::EmptyExtraData(), ::media::EncryptionScheme(false)));
halliwell 2016/01/13 03:29:41 ditto
dougsteed 2016/02/09 22:58:53 Done.
// Frame generation on the producer side.
std::vector<FrameGeneratorForTest::FrameSpec> frame_specs;

Powered by Google App Engine
This is Rietveld 408576698