Blacklist Tegra X1's HEVC decoder until the correct SPS fixups are in place

This commit is contained in:
Cameron Gutman 2016-05-07 20:53:45 -04:00
parent 39fa0258ad
commit cbcb784a79

View File

@ -57,6 +57,11 @@ public class MediaCodecHelper {
// Software decoders that don't support H264 high profile // Software decoders that don't support H264 high profile
blacklistedDecoderPrefixes.add("omx.google"); blacklistedDecoderPrefixes.add("omx.google");
blacklistedDecoderPrefixes.add("AVCDecoder"); blacklistedDecoderPrefixes.add("AVCDecoder");
// Without bitstream fixups, we perform horribly on NVIDIA's HEVC
// decoder. While not strictly necessary, I'm going to fully blacklist this
// one to avoid users getting inaccurate impressions of Tegra X1/Moonlight performance.
blacklistedDecoderPrefixes.add("OMX.Nvidia.h265.decode");
} }
static { static {