Optimize performance flags.

This commit is contained in:
Cameron Gutman 2013-11-24 19:29:26 -05:00
parent 9be14c3d92
commit d9527a3810

View File

@ -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;