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

Unified Diff: media/base/android/media_codec_bridge.cc

Issue 866923003: Temporary disable VP8 HW video decoding on Exynos and MediaTek devices while HW decoder video freez… (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 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/android/media_codec_bridge.cc
diff --git a/media/base/android/media_codec_bridge.cc b/media/base/android/media_codec_bridge.cc
index ee847b7c24c638f949acc60fdb28e14dfbb15a2a..d6bd2d9d2ff6f864f783b3f912eb3f5a45f61e48 100644
--- a/media/base/android/media_codec_bridge.cc
+++ b/media/base/android/media_codec_bridge.cc
@@ -238,10 +238,14 @@ bool MediaCodecBridge::IsKnownUnaccelerated(const std::string& mime_type,
// HW-acceleration but it doesn't. Android Media guidance is that the
// "OMX.google" prefix is always used for SW decoders, so that's what we
// use. "OMX.SEC.*" codec is Samsung software implementation - report it
- // as unaccelerated as well.
+ // as unaccelerated as well. Also temporary blacklist Exynos and MediaTek
+ // devices while HW decoder video freezes and distortions are
+ // investigated - http://crbug.com/446974.
if (codec_name.length() > 0) {
return (StartsWithASCII(codec_name, "OMX.google.", true) ||
- StartsWithASCII(codec_name, "OMX.SEC.", true));
+ StartsWithASCII(codec_name, "OMX.SEC.", true) ||
+ StartsWithASCII(codec_name, "OMX.MTK.", true) ||
+ StartsWithASCII(codec_name, "OMX.Exynos.", true));
}
return true;
}
« 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