Fixes for nvenc support marked as experimental, since more testing should be done on options

This commit is contained in:
root
2016-06-30 17:04:26 -04:00
parent 3f5277e67e
commit ffd3101ac6
4 changed files with 16 additions and 16 deletions

View File

@@ -562,9 +562,9 @@ namespace MediaBrowser.MediaEncoding.Encoder
return "h264_qsv";
}
if (string.Equals(options.HardwareAccelerationType, "libnvenc", StringComparison.OrdinalIgnoreCase))
if (string.Equals(options.HardwareAccelerationType, "nvenc", StringComparison.OrdinalIgnoreCase))
{
return "libnvenc";
return "h264_nvenc";
}
if (string.Equals(options.HardwareAccelerationType, "h264_omx", StringComparison.OrdinalIgnoreCase))
{