mirror of
https://github.com/moonlight-stream/moonlight-android.git
synced 2025-07-20 03:23:07 +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 |
|
flags = AvcDecoder.DISABLE_LOOP_FILTER |
|
||||||
AvcDecoder.FAST_BILINEAR_FILTERING |
|
AvcDecoder.FAST_BILINEAR_FILTERING |
|
||||||
AvcDecoder.FAST_DECODE |
|
AvcDecoder.FAST_DECODE |
|
||||||
AvcDecoder.LOW_LATENCY_DECODE;
|
AvcDecoder.SLICE_THREADING;
|
||||||
break;
|
break;
|
||||||
case MED_PERF:
|
case MED_PERF:
|
||||||
flags = AvcDecoder.LOW_LATENCY_DECODE |
|
flags = AvcDecoder.BILINEAR_FILTERING |
|
||||||
AvcDecoder.FAST_DECODE |
|
AvcDecoder.FAST_DECODE |
|
||||||
AvcDecoder.BILINEAR_FILTERING;
|
AvcDecoder.SLICE_THREADING;
|
||||||
break;
|
break;
|
||||||
case HIGH_PERF:
|
case HIGH_PERF:
|
||||||
flags = AvcDecoder.LOW_LATENCY_DECODE;
|
flags = AvcDecoder.LOW_LATENCY_DECODE;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user