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/base/android/media_codec_util.cc

Issue 2420833003: Blacklist Samsung Galaxy Star and Samsung Galaxy Win (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/android/media_codec_util.cc
diff --git a/media/base/android/media_codec_util.cc b/media/base/android/media_codec_util.cc
index 876e0761f27e33f2ef099a45e1df552571612912..7735890d4c6a8e0733e190f35b23499ff1c1a975 100644
--- a/media/base/android/media_codec_util.cc
+++ b/media/base/android/media_codec_util.cc
@@ -94,11 +94,13 @@ bool MediaCodecUtil::IsMediaCodecAvailable() {
// Blacklist Lenovo A6600 / A6800 on KitKat, which tends to crash a lot.
// See crbug.com/628059 . We include < K since they don't exist.
// Blacklist Samsung Galaxy Star Pro (GT-S7262) (crbug.com/634920).
+ // GT-S5282 and GT-I8552 are for crbug.com/634920 .
if (base::android::BuildInfo::GetInstance()->sdk_int() <= 19) {
std::string model(base::android::BuildInfo::GetInstance()->model());
return model != "GT-I9100" && model != "GT-I9300" && model != "GT-N7000" &&
model != "GT-N7100" && model != "A6600" && model != "A6800" &&
- model != "GT-S7262";
+ model != "GT-S7262" &&
+ model != "GT-S5282" && model != "GT-I8552";
}
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