mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-08-03 22:40:09 +00:00
revert buffer size
This commit is contained in:
parent
d1e2ccdfec
commit
2dbe162e45
2 changed files with 12 additions and 1 deletions
|
|
@ -164,6 +164,10 @@ namespace MediaBrowser.Controller.MediaEncoding
|
|||
{
|
||||
return null;
|
||||
}
|
||||
if (string.Equals(container, "mts", StringComparison.OrdinalIgnoreCase))
|
||||
{
|
||||
return null;
|
||||
}
|
||||
if (string.Equals(container, "vob", StringComparison.OrdinalIgnoreCase))
|
||||
{
|
||||
return null;
|
||||
|
|
@ -1709,6 +1713,13 @@ namespace MediaBrowser.Controller.MediaEncoding
|
|||
return "-c:v h264_qsv ";
|
||||
}
|
||||
break;
|
||||
//case "hevc":
|
||||
//case "h265":
|
||||
// if (_mediaEncoder.SupportsDecoder("hevc_qsv"))
|
||||
// {
|
||||
// return "-c:v hevc_qsv ";
|
||||
// }
|
||||
// break;
|
||||
case "mpeg2video":
|
||||
if (_mediaEncoder.SupportsDecoder("mpeg2_qsv"))
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue