mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-23 02:02:43 +01:00
Apply review suggestions
This commit is contained in:
parent
697efec86e
commit
1cd7da8889
1 changed files with 7 additions and 0 deletions
|
|
@ -1477,6 +1477,13 @@ namespace MediaBrowser.Model.Dlna
|
|||
|
||||
private bool IsBitrateLimitExceeded(MediaSourceInfo item, long maxBitrate)
|
||||
{
|
||||
// Don't restrict by bitrate if coming from an external domain
|
||||
if (item.IsRemote)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
|
||||
long requestedMaxBitrate = maxBitrate > 0 ? maxBitrate : 1000000;
|
||||
|
||||
// If we don't know the bitrate, then force a transcode if requested max bitrate is under 40 mbps
|
||||
|
|
|
|||
Loading…
Reference in a new issue