diff options
Diffstat (limited to 'win/CS/HandBrakeWPF/Model')
-rw-r--r-- | win/CS/HandBrakeWPF/Model/VideoScaler.cs | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/win/CS/HandBrakeWPF/Model/VideoScaler.cs b/win/CS/HandBrakeWPF/Model/VideoScaler.cs deleted file mode 100644 index 53ff3eb1b..000000000 --- a/win/CS/HandBrakeWPF/Model/VideoScaler.cs +++ /dev/null @@ -1,28 +0,0 @@ -// --------------------------------------------------------------------------------------------------------------------
-// <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 HandBrakeWPF.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,
- }
-}
|