Merge branch 'master' of github.com:moonlight-stream/moonlight-android

This commit is contained in:
Cameron Gutman 2017-10-17 00:37:00 -07:00
commit 80a37855c7

View File

@ -74,11 +74,6 @@ public class MediaCodecHelper {
// Never use ffmpeg decoders since they're software decoders // Never use ffmpeg decoders since they're software decoders
blacklistedDecoderPrefixes.add("OMX.ffmpeg"); blacklistedDecoderPrefixes.add("OMX.ffmpeg");
// 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");
// Force these decoders disabled because: // Force these decoders disabled because:
// 1) They are software decoders, so the performance is terrible // 1) They are software decoders, so the performance is terrible
// 2) They crash with our HEVC stream anyway (at least prior to CSD batching) // 2) They crash with our HEVC stream anyway (at least prior to CSD batching)