mirror of
https://github.com/moonlight-stream/moonlight-android.git
synced 2025-07-19 19:13:03 +00:00
Disable RFI on b3_att_us
This commit is contained in:
parent
6d97775aa9
commit
bc59f11096
@ -292,6 +292,13 @@ public class MediaCodecHelper {
|
|||||||
if (videoHeight > 720 && isLowEndSnapdragon) {
|
if (videoHeight > 720 && isLowEndSnapdragon) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// This device seems to crash constantly at 720p, so try disabling
|
||||||
|
// RFI to see if we can get that under control.
|
||||||
|
if (Build.PRODUCT.equalsIgnoreCase("b3_att_us")) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
return isDecoderInList(refFrameInvalidationAvcPrefixes, decoderName);
|
return isDecoderInList(refFrameInvalidationAvcPrefixes, decoderName);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user