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

Unified Diff: media/base/mime_util_unittest.cc

Issue 1899423002: Revert of Implement support for vp9 in ISO-BMFF (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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/mime_util_internal.cc ('k') | media/filters/stream_parser_factory.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/base/mime_util_unittest.cc
diff --git a/media/base/mime_util_unittest.cc b/media/base/mime_util_unittest.cc
index f346abd00e221814ba15e9b5195ed8502304fd66..4db5aa7c9f3e35df0833dc112966bbba6a3884a2 100644
--- a/media/base/mime_util_unittest.cc
+++ b/media/base/mime_util_unittest.cc
@@ -329,24 +329,13 @@
break;
case MimeUtil::VP9:
- // MediaPlayer only supports VP9 in WebM.
- EXPECT_FALSE(result);
+ EXPECT_EQ(info.has_platform_vp9_decoder, result);
break;
case MimeUtil::HEVC_MAIN:
EXPECT_EQ(HasHevcSupport(), result);
break;
}
- });
-
- // Verify vp9 support in WebM.
- RunCodecSupportTest(
- states_to_vary, test_states,
- [](const MimeUtil::PlatformInfo& info, MimeUtil::Codec codec) {
- const bool result = MimeUtil::IsCodecSupportedOnPlatform(
- codec, "video/webm", true, info);
- if (codec == MimeUtil::VP9)
- EXPECT_EQ(info.has_platform_vp9_decoder, result);
});
}
« no previous file with comments | « media/base/mime_util_internal.cc ('k') | media/filters/stream_parser_factory.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698