|
|
@ -261,10 +261,7 @@ namespace MediaBrowser.MediaEncoding.Encoder
|
|
|
|
return Enumerable.Empty<string>();
|
|
|
|
return Enumerable.Empty<string>();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
var found = output.Split(new char[] {'\r','\n'}, StringSplitOptions.RemoveEmptyEntries).Distinct().ToList();
|
|
|
|
var found = output.Split(new char[] {'\r','\n'}, StringSplitOptions.RemoveEmptyEntries).Skip(1).Distinct().ToList();
|
|
|
|
|
|
|
|
|
|
|
|
found.RemoveAt(0);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
_logger.LogInformation("Available hwaccel types: {Types}", found);
|
|
|
|
_logger.LogInformation("Available hwaccel types: {Types}", found);
|
|
|
|
|
|
|
|
|
|
|
|
return found;
|
|
|
|
return found;
|
|
|
|