Fix missing commas and merge defects

This commit is contained in:
Vasily
2020-05-26 18:41:38 +03:00
parent 3c82379759
commit 628734931c
3 changed files with 4 additions and 7 deletions

View File

@@ -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();