mirror of
https://github.com/n00mkrad/flowframes.git
synced 2026-08-29 01:58:30 +02:00
Fix incorrectly listed YUV 4:4:4 formats for NVENC HEVC/AV1
This commit is contained in:
@@ -85,7 +85,7 @@ namespace Flowframes.MiscUtils
|
||||
{
|
||||
Codec = Codec.H265,
|
||||
Name = "hevc_nvenc",
|
||||
PixelFormats = new List<PixFmt>() { PixFmt.Yuv420P, PixFmt.Yuv444P, PixFmt.Yuv420P10Le },
|
||||
PixelFormats = new List<PixFmt>() { PixFmt.Yuv420P, PixFmt.Yuv420P10Le },
|
||||
QualityLevels = ParseUtils.GetEnumStrings<Quality.Common>(),
|
||||
QualityDefault = (int)Quality.Common.VeryHigh,
|
||||
HwAccelerated = true,
|
||||
@@ -98,7 +98,7 @@ namespace Flowframes.MiscUtils
|
||||
{
|
||||
Codec = Codec.AV1,
|
||||
Name = "av1_nvenc",
|
||||
PixelFormats = new List<PixFmt>() { PixFmt.Yuv420P, PixFmt.Yuv444P, PixFmt.Yuv420P10Le },
|
||||
PixelFormats = new List<PixFmt>() { PixFmt.Yuv420P, PixFmt.Yuv420P10Le },
|
||||
QualityLevels = ParseUtils.GetEnumStrings<Quality.Common>(),
|
||||
QualityDefault = (int)Quality.Common.VeryHigh,
|
||||
PixelFormatDefault = PixFmt.Yuv420P10Le,
|
||||
|
||||
Reference in New Issue
Block a user