Blacklist Moto Z from using secure DummySurface.

Issue: #3215

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=178218535
This commit is contained in:
olly 2017-12-07 03:06:54 -08:00 committed by Oliver Woodman
parent a4a02f7449
commit f677d1309d

View File

@ -150,14 +150,17 @@ public final class DummySurface extends Surface {
*/
@TargetApi(24)
private static boolean enableSecureDummySurfaceV24(Context context) {
if (Util.SDK_INT < 26 && "samsung".equals(Util.MANUFACTURER)) {
if (Util.SDK_INT < 26 && ("samsung".equals(Util.MANUFACTURER) || "XT1650".equals(Util.MODEL))) {
// Samsung devices running Nougat are known to be broken. See
// https://github.com/google/ExoPlayer/issues/3373 and [Internal: b/37197802].
// Moto Z XT1650 is also affected. See
// https://github.com/google/ExoPlayer/issues/3215.
return false;
}
if (Util.SDK_INT < 26 && !context.getPackageManager().hasSystemFeature(
PackageManager.FEATURE_VR_MODE_HIGH_PERFORMANCE)) {
// Pre API level 26 devices were not well tested unless they supported VR mode.
// Pre API level 26 devices were not well tested unless they supported VR mode. See
// https://github.com/google/ExoPlayer/issues/3215.
return false;
}
EGLDisplay display = eglGetDisplay(EGL_DEFAULT_DISPLAY);