mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-04-24 22:17:25 -04:00
Fix the broken codecs shifting (#11243)
This commit is contained in:
parent
d6355261e3
commit
16e72d6883
1 changed files with 2 additions and 2 deletions
|
@ -6650,7 +6650,7 @@ namespace MediaBrowser.Controller.MediaEncoding
|
|||
|
||||
while (shiftAudioCodecs.Contains(audioCodecs[0], StringComparison.OrdinalIgnoreCase))
|
||||
{
|
||||
var removed = shiftAudioCodecs[0];
|
||||
var removed = audioCodecs[0];
|
||||
audioCodecs.RemoveAt(0);
|
||||
audioCodecs.Add(removed);
|
||||
}
|
||||
|
@ -6684,7 +6684,7 @@ namespace MediaBrowser.Controller.MediaEncoding
|
|||
|
||||
while (shiftVideoCodecs.Contains(videoCodecs[0], StringComparison.OrdinalIgnoreCase))
|
||||
{
|
||||
var removed = shiftVideoCodecs[0];
|
||||
var removed = videoCodecs[0];
|
||||
videoCodecs.RemoveAt(0);
|
||||
videoCodecs.Add(removed);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue