summaryrefslogtreecommitdiffstats
path: root/win/CS/HandBrake.Interop
diff options
context:
space:
mode:
Diffstat (limited to 'win/CS/HandBrake.Interop')
-rw-r--r--win/CS/HandBrake.Interop/Interop/HbLib/hb_filter_ids.cs6
-rw-r--r--win/CS/HandBrake.Interop/Interop/Json/Presets/HBPreset.cs4
2 files changed, 9 insertions, 1 deletions
diff --git a/win/CS/HandBrake.Interop/Interop/HbLib/hb_filter_ids.cs b/win/CS/HandBrake.Interop/Interop/HbLib/hb_filter_ids.cs
index 0bd958f15..1b410e488 100644
--- a/win/CS/HandBrake.Interop/Interop/HbLib/hb_filter_ids.cs
+++ b/win/CS/HandBrake.Interop/Interop/HbLib/hb_filter_ids.cs
@@ -33,6 +33,7 @@ namespace HandBrake.Interop.Interop.HbLib
HB_FILTER_ROTATE,
HB_FILTER_GRAYSCALE,
HB_FILTER_PAD,
+ HB_FILTER_COLORSPACE,
// Finally filters that don't care what order they are in,
// except that they must be after the above filters
@@ -42,6 +43,9 @@ namespace HandBrake.Interop.Interop.HbLib
HB_FILTER_QSV_POST,
// default MSDK VPP filter
HB_FILTER_QSV,
- HB_FILTER_LAST = HB_FILTER_QSV
+ HB_FILTER_LAST = HB_FILTER_QSV,
+
+ // wrapper filter for frame based multi-threading of simple filters
+ HB_FILTER_MT_FRAME,
}
}
diff --git a/win/CS/HandBrake.Interop/Interop/Json/Presets/HBPreset.cs b/win/CS/HandBrake.Interop/Interop/Json/Presets/HBPreset.cs
index 578bcfc50..4e42409b8 100644
--- a/win/CS/HandBrake.Interop/Interop/Json/Presets/HBPreset.cs
+++ b/win/CS/HandBrake.Interop/Interop/Json/Presets/HBPreset.cs
@@ -187,6 +187,10 @@ namespace HandBrake.Interop.Interop.Json.Presets
/// </summary>
public string PictureDetelecineCustom { get; set; }
+ public string PictureColorspacePreset { get; set; }
+
+ public string PictureColorspaceCustom { get; set; }
+
/// <summary>
/// Gets or sets a value indicating whether picture itu par.
/// </summary>