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

Unified Diff: media/mp4/mp4_stream_parser_unittest.cc

Issue 10910293: Add is_encrypted() in VideoDecoderConfig. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 3 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/mp4/mp4_stream_parser_unittest.cc
diff --git a/media/mp4/mp4_stream_parser_unittest.cc b/media/mp4/mp4_stream_parser_unittest.cc
index 20c32f100cca69b86ad32efce102d7555e5b5c25..e3bd1644e16fde8931cbc50dbfe21d92b76712c8 100644
--- a/media/mp4/mp4_stream_parser_unittest.cc
+++ b/media/mp4/mp4_stream_parser_unittest.cc
@@ -59,7 +59,9 @@ class MP4StreamParserTest : public testing::Test {
}
bool NewConfigF(const AudioDecoderConfig& ac,
- const VideoDecoderConfig& vc) {
+ const VideoDecoderConfig& vc,
+ bool is_audio_encrypted,
+ bool is_vedio_encrypted) {
DVLOG(1) << "NewConfigF: audio=" << ac.IsValidConfig()
<< ", video=" << vc.IsValidConfig();
configs_received_ = true;

Powered by Google App Engine
This is Rietveld 408576698