Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/ffcfa2d85843aaa9a99131d531296b0b54cc0e34 You should set ROOT_URL correctly, otherwise the web may not work correctly.

allow bitrate upscaling

pull/702/head
Luke Pulverenti 12 years ago
parent 6415776cd1
commit ffcfa2d858

@ -693,15 +693,7 @@ namespace MediaBrowser.Api.Playback
protected int? GetVideoBitrateParam(StreamState state)
{
if (state.VideoRequest.VideoBitRate.HasValue)
{
// Make sure we don't request a bitrate higher than the source
var currentBitrate = state.VideoStream == null ? state.VideoRequest.VideoBitRate.Value : state.VideoStream.BitRate ?? state.VideoRequest.VideoBitRate.Value;
return Math.Min(currentBitrate, state.VideoRequest.VideoBitRate.Value);
}
return null;
return state.VideoRequest.VideoBitRate;
}
protected int? GetAudioBitrateParam(StreamState state)

Loading…
Cancel
Save