mirror of
https://github.com/moonlight-stream/moonlight-android.git
synced 2025-07-19 11:03:01 +00:00
Optimize performance flags.
This commit is contained in:
parent
9be14c3d92
commit
d9527a3810
@ -79,12 +79,12 @@ public class CpuDecoderRenderer implements DecoderRenderer {
|
||||
flags = AvcDecoder.DISABLE_LOOP_FILTER |
|
||||
AvcDecoder.FAST_BILINEAR_FILTERING |
|
||||
AvcDecoder.FAST_DECODE |
|
||||
AvcDecoder.LOW_LATENCY_DECODE;
|
||||
AvcDecoder.SLICE_THREADING;
|
||||
break;
|
||||
case MED_PERF:
|
||||
flags = AvcDecoder.LOW_LATENCY_DECODE |
|
||||
flags = AvcDecoder.BILINEAR_FILTERING |
|
||||
AvcDecoder.FAST_DECODE |
|
||||
AvcDecoder.BILINEAR_FILTERING;
|
||||
AvcDecoder.SLICE_THREADING;
|
||||
break;
|
||||
case HIGH_PERF:
|
||||
flags = AvcDecoder.LOW_LATENCY_DECODE;
|
||||
|
Loading…
x
Reference in New Issue
Block a user