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

Unified Diff: media/filters/chunk_demuxer_unittest.cc

Issue 2760893003: Update new VP9 codec string parsing (Closed)
Patch Set: So many tests... Created 3 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
« no previous file with comments | « media/base/video_codecs_unittest.cc ('k') | media/test/pipeline_integration_test.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/filters/chunk_demuxer_unittest.cc
diff --git a/media/filters/chunk_demuxer_unittest.cc b/media/filters/chunk_demuxer_unittest.cc
index 00aad682ec49893991a87c6e3de107610f1c1eee..27e616fe085dbeb33e2048c885d67b69066f6cba 100644
--- a/media/filters/chunk_demuxer_unittest.cc
+++ b/media/filters/chunk_demuxer_unittest.cc
@@ -4785,14 +4785,13 @@ TEST_P(ChunkDemuxerMp4Vp9Test, CodecSupport) {
if (enable_mp4_vp9_demuxing) {
expected = ChunkDemuxer::kOk;
} else {
- EXPECT_MEDIA_LOG(HasSubstr(
- "Codec 'vp09.00.01.08.02.01.01.00' is not supported for 'video/mp4'"));
+ EXPECT_MEDIA_LOG(
+ HasSubstr("Codec 'vp09.00.10.08' is not supported for 'video/mp4'"));
}
#endif
- EXPECT_EQ(
- demuxer_->AddId("source_id", "video/mp4", "vp09.00.01.08.02.01.01.00"),
- expected);
+ EXPECT_EQ(demuxer_->AddId("source_id", "video/mp4", "vp09.00.10.08"),
+ expected);
}
INSTANTIATE_TEST_CASE_P(EnableDisableMp4Vp9Demuxing,
« no previous file with comments | « media/base/video_codecs_unittest.cc ('k') | media/test/pipeline_integration_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698