Skip to content

Commit 406fd9b

Browse files
committed
Adjust default AV1 presets (aom cpu6, svt p7 for ffmpeg)
1 parent 38e90cc commit 406fd9b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

ff-utils-winforms/Data/Codecs/Video/AomAv1.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ class AomAv1 : IEncoder
1212
public string Name { get { return GetType().Name; } }
1313
public string FriendlyName { get; } = "AV1 (AOM)";
1414
public string[] Presets { get; } = new string[] { "0", "1", "2", "3", "4", "5", "6" };
15-
public int PresetDefault { get; } = 5;
15+
public int PresetDefault { get; } = 6;
1616
public string[] ColorFormats { get; } = new string[] { "yuv420p", "yuv420p10le" };
1717
public int ColorFormatDefault { get; } = 1;
1818
public int QMin { get; } = 0;

ff-utils-winforms/Data/Codecs/Video/LibAomAv1.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ class LibAomAv1 : IEncoder
1111
public string Name { get { return GetType().Name; } }
1212
public string FriendlyName { get; } = "AV1 (AOM-AV1)";
1313
public string[] Presets { get; } = new string[] { "0", "1", "2", "3", "4", "5", "6" };
14-
public int PresetDefault { get; } = 5;
14+
public int PresetDefault { get; } = 6;
1515
public string[] ColorFormats { get; } = new string[] { "yuv420p", "yuv420p10le" };
1616
public int ColorFormatDefault { get; } = 1;
1717
public int QMin { get; } = 0;

ff-utils-winforms/Data/Codecs/Video/LibSvtAv1.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ class LibSvtAv1 : IEncoder
1212
public string Name { get { return GetType().Name; } }
1313
public string FriendlyName { get; } = "AV1 (SVT-AV1)";
1414
public string[] Presets { get; } = new string[] { "0", "1", "2", "3", "4", "5", "6", "7", "8" };
15-
public int PresetDefault { get; } = 5;
15+
public int PresetDefault { get; } = 7;
1616
public string[] ColorFormats { get; } = new string[] { "yuv420p", "yuv420p10le" };
1717
public int ColorFormatDefault { get; } = 1;
1818
public int QMin { get; } = 0;

0 commit comments

Comments
 (0)