Fix condition in CanStreamCopyAudio

pull/9409/head
Shadowghost 2 years ago
parent 2cc0869144
commit 3a5503be5f

@ -1970,9 +1970,9 @@ namespace MediaBrowser.Controller.MediaEncoding
}
}
// Video bitrate must fall within requested value
// Audio bitrate must fall within requested value
if (request.AudioBitRate.HasValue
&& audioStream.BitDepth.HasValue
&& audioStream.BitRate.HasValue
&& audioStream.BitRate.Value > request.AudioBitRate.Value)
{
return false;

Loading…
Cancel
Save