mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-07-09 03:04:24 -04:00
remove audio channel limit from transcoding conditions
This commit is contained in:
parent
bdcaf5dd02
commit
8030370cfa
@ -893,12 +893,9 @@ namespace MediaBrowser.Api.Playback
|
|||||||
resultChannels = Math.Min(request.MaxAudioChannels.Value, channelLimit);
|
resultChannels = Math.Min(request.MaxAudioChannels.Value, channelLimit);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (resultChannels.HasValue && !string.Equals(codec, "copy", StringComparison.OrdinalIgnoreCase))
|
if (request.TranscodingMaxAudioChannels.HasValue && !string.Equals(codec, "copy", StringComparison.OrdinalIgnoreCase))
|
||||||
{
|
{
|
||||||
if (request.TranscodingMaxAudioChannels.HasValue)
|
resultChannels = Math.Min(request.TranscodingMaxAudioChannels.Value, resultChannels ?? inputChannels ?? request.TranscodingMaxAudioChannels.Value);
|
||||||
{
|
|
||||||
resultChannels = Math.Min(request.TranscodingMaxAudioChannels.Value, resultChannels.Value);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return resultChannels ?? request.AudioChannels;
|
return resultChannels ?? request.AudioChannels;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user