Automated Code Change

PiperOrigin-RevId: 661516063
This commit is contained in:
Googler 2024-08-09 21:15:12 -07:00 committed by Copybara-Service
parent 117ac2e3f4
commit 65a471e3db

View File

@ -3411,9 +3411,9 @@ public final class Util {
// MediaFormat#KEY_ALLOW_FRAME_DROP} to 0. See b/307518793, b/289983935 and b/353487886.
return SDK_INT < 29
|| context.getApplicationInfo().targetSdkVersion < 29
|| (SDK_INT == 30
|| ((SDK_INT == 30
&& (Ascii.equalsIgnoreCase(MODEL, "moto g(20)")
|| Ascii.equalsIgnoreCase(MODEL, "rmx3231"))
|| Ascii.equalsIgnoreCase(MODEL, "rmx3231")))
|| (SDK_INT == 34 && Ascii.equalsIgnoreCase(MODEL, "sm-x200")));
}