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

Unified Diff: media/base/key_systems.cc

Issue 2394873004: Enable OPUS and VP9 codecs on Android for Clear Key key system (Closed)
Patch Set: Created 4 years, 2 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/base/key_systems.cc
diff --git a/media/base/key_systems.cc b/media/base/key_systems.cc
index 25676ba46bbc54debca30122d734707cf7231573..c2eb7f163076d82dd03b7ff2ca3255f7f9103e32 100644
--- a/media/base/key_systems.cc
+++ b/media/base/key_systems.cc
@@ -86,16 +86,6 @@ class ClearKeyProperties : public KeySystemProperties {
// VP9 support is device dependent.
SupportedCodecs codecs = EME_CODEC_WEBM_ALL;
-#if defined(OS_ANDROID)
- // Temporarily disable VP9 support for Android.
- // TODO(xhwang): Use mime_util.h to query VP9 support on Android.
- codecs &= ~EME_CODEC_WEBM_VP9;
-
- // Opus is not supported on Android yet. http://crbug.com/318436.
- // TODO(sandersd): Check for platform support to set this bit.
- codecs &= ~EME_CODEC_WEBM_OPUS;
-#endif // defined(OS_ANDROID)
-
#if defined(USE_PROPRIETARY_CODECS)
codecs |= EME_CODEC_MP4_ALL;
#endif // defined(USE_PROPRIETARY_CODECS)
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698