diff options
Diffstat (limited to 'win/CS/HandBrake.ApplicationServices/Model/VideoScaler.cs')
-rw-r--r-- | win/CS/HandBrake.ApplicationServices/Model/VideoScaler.cs | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/win/CS/HandBrake.ApplicationServices/Model/VideoScaler.cs b/win/CS/HandBrake.ApplicationServices/Model/VideoScaler.cs new file mode 100644 index 000000000..9772494cf --- /dev/null +++ b/win/CS/HandBrake.ApplicationServices/Model/VideoScaler.cs @@ -0,0 +1,28 @@ +// --------------------------------------------------------------------------------------------------------------------
+// <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.ApplicationServices.Model
+{
+ using System.ComponentModel.DataAnnotations;
+
+ /// <summary>
+ /// The different scaling modes available in HandBrake
+ /// </summary>
+ public enum VideoScaler
+ {
+ [Display(Name = "Lanczos")]
+ Lanczos = 0,
+
+ // [Display(Name = "Bicubic")]
+ // Bicubic,
+
+ [Display(Name = "Bicubic (OpenCL)")]
+ BicubicCl,
+ }
+}
|