Exclude Qualcomm's software HEVC decoder which chokes on our streams

This commit is contained in:
Cameron Gutman 2017-05-17 19:41:43 -07:00
parent 9ae1fe2696
commit 43b58b7a5e

View File

@ -244,6 +244,16 @@ public class MediaCodecHelper {
return false;
}
//
// Software decoders are terrible and we never want to use them.
// We want to catch decoders like:
// OMX.qcom.video.decoder.hevcswvdec
// OMX.SEC.hevc.sw.dec
//
if (decoderName.contains("sw")) {
return false;
}
return isDecoderInList(whitelistedHevcDecoders, decoderName);
}