mirror of
https://github.com/moonlight-stream/moonlight-android.git
synced 2025-07-20 03:23:07 +00:00
Also disable non-compliant speed optimizations when prioritizing quality
This commit is contained in:
parent
b603bf4887
commit
a2a4159b0c
@ -116,6 +116,9 @@ public class CpuDecoderRenderer implements DecoderRenderer {
|
|||||||
// Make sure the loop filter is enabled
|
// Make sure the loop filter is enabled
|
||||||
avcFlags &= ~AvcDecoder.DISABLE_LOOP_FILTER;
|
avcFlags &= ~AvcDecoder.DISABLE_LOOP_FILTER;
|
||||||
|
|
||||||
|
// Disable the non-compliant speed optimizations
|
||||||
|
avcFlags &= ~AvcDecoder.FAST_DECODE;
|
||||||
|
|
||||||
System.out.println("Using high quality decoding");
|
System.out.println("Using high quality decoding");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user