support mpeg2 decoding with omx

This commit is contained in:
Luke Pulverenti 2017-10-05 14:07:31 -04:00
parent 1caae368d5
commit fd621bbc52

View file

@ -1960,6 +1960,12 @@ namespace MediaBrowser.Controller.MediaEncoding
return "-c:v h264_mmal";
}
break;
case "mpeg2video":
if (_mediaEncoder.SupportsDecoder("mpeg2_mmal") && encodingOptions.HardwareDecodingCodecs.Contains("mpeg2video", StringComparer.OrdinalIgnoreCase))
{
return "-c:v mpeg2_mmal";
}
break;
}
}
}