mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-06-02 21:24:15 -04:00
support mpeg2 decoding with omx
This commit is contained in:
parent
1caae368d5
commit
fd621bbc52
@ -1960,6 +1960,12 @@ namespace MediaBrowser.Controller.MediaEncoding
|
|||||||
return "-c:v h264_mmal";
|
return "-c:v h264_mmal";
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
case "mpeg2video":
|
||||||
|
if (_mediaEncoder.SupportsDecoder("mpeg2_mmal") && encodingOptions.HardwareDecodingCodecs.Contains("mpeg2video", StringComparer.OrdinalIgnoreCase))
|
||||||
|
{
|
||||||
|
return "-c:v mpeg2_mmal";
|
||||||
|
}
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user