summaryrefslogtreecommitdiffstats
path: root/win/CS/HandBrake.Interop/Model/VideoScaler.cs
diff options
context:
space:
mode:
Diffstat (limited to 'win/CS/HandBrake.Interop/Model/VideoScaler.cs')
-rw-r--r--win/CS/HandBrake.Interop/Model/VideoScaler.cs23
1 files changed, 23 insertions, 0 deletions
diff --git a/win/CS/HandBrake.Interop/Model/VideoScaler.cs b/win/CS/HandBrake.Interop/Model/VideoScaler.cs
new file mode 100644
index 000000000..03a19fcf3
--- /dev/null
+++ b/win/CS/HandBrake.Interop/Model/VideoScaler.cs
@@ -0,0 +1,23 @@
+// --------------------------------------------------------------------------------------------------------------------
+// <copyright file="VideoScaler.cs" company="HandBrake Project (http://handbrake.fr)">
+// This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License.
+// </copyright>
+// <summary>
+// The different scaling modes available in HandBrake
+// </summary>
+// --------------------------------------------------------------------------------------------------------------------
+
+namespace HandBrake.Interop.Model
+{
+ using HandBrake.Interop.Attributes;
+
+ /// <summary>
+ /// The different scaling modes available in HandBrake
+ /// </summary>
+ public enum VideoScaler
+ {
+ [DisplayName("Lanczos (default)")]
+ [ShortName("swscale")]
+ Lanczos = 0,
+ }
+}