Fix condition in CanStreamCopyAudio

This commit is contained in:
Shadowghost 2023-03-17 11:49:07 +01:00
parent ee4ffd64e1
commit 3f6a23d7d0

View file

@ -2023,9 +2023,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;