mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-03-09 11:46:18 +00:00
Fix missing commas and merge defects
This commit is contained in:
@@ -45,7 +45,7 @@ namespace MediaBrowser.MediaEncoding.Encoder
|
||||
"mpeg2_mediacodec",
|
||||
"mpeg4_mediacodec",
|
||||
"vp8_mediacodec",
|
||||
"vp9_mediacodec"
|
||||
"vp9_mediacodec",
|
||||
"h264_videotoolbox",
|
||||
"hevc_videotoolbox",
|
||||
"mpeg2_videotoolbox",
|
||||
@@ -80,8 +80,8 @@ namespace MediaBrowser.MediaEncoding.Encoder
|
||||
"hevc_vaapi",
|
||||
"h264_omx",
|
||||
"hevc_omx",
|
||||
"h264_v4l2m2m"
|
||||
"h264_videotoolbox"
|
||||
"h264_v4l2m2m",
|
||||
"h264_videotoolbox",
|
||||
"hevc_videotoolbox"
|
||||
};
|
||||
|
||||
|
||||
@@ -258,7 +258,7 @@ namespace MediaBrowser.MediaEncoding.Encoder
|
||||
//_logger.Info("Supported decoders: {0}", string.Join(",", list.ToArray()));
|
||||
}
|
||||
|
||||
private List<string> _hwaccels = Array.Empty<string>();
|
||||
private List<string> _hwaccels = new List<string>();
|
||||
public void SetAvailableHwaccels(IEnumerable<string> list)
|
||||
{
|
||||
_hwaccels = list.ToList();
|
||||
|
||||
Reference in New Issue
Block a user