mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-03-02 00:12:24 +00:00
Remove useless checks and dead code (#13405)
* Remove useless checks and dead code * Enable adaptive bitrate streaming again * Disable adaptive bitrate streaming by default
This commit is contained in:
@@ -1087,12 +1087,12 @@ namespace MediaBrowser.Model.Dlna
|
||||
|
||||
_logger.LogDebug(
|
||||
"Transcode Result for Profile: {Profile}, Path: {Path}, PlayMethod: {PlayMethod}, AudioStreamIndex: {AudioStreamIndex}, SubtitleStreamIndex: {SubtitleStreamIndex}, Reasons: {TranscodeReason}",
|
||||
options.Profile?.Name ?? "Anonymous Profile",
|
||||
options.Profile.Name ?? "Anonymous Profile",
|
||||
item.Path ?? "Unknown path",
|
||||
playlistItem?.PlayMethod,
|
||||
playlistItem.PlayMethod,
|
||||
audioStream?.Index,
|
||||
playlistItem?.SubtitleStreamIndex,
|
||||
playlistItem?.TranscodeReasons);
|
||||
playlistItem.SubtitleStreamIndex,
|
||||
playlistItem.TranscodeReasons);
|
||||
}
|
||||
|
||||
private static int GetDefaultAudioBitrate(string? audioCodec, int? audioChannels)
|
||||
|
||||
Reference in New Issue
Block a user