diff options
author | sr55 <[email protected]> | 2013-09-28 12:44:05 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2013-09-28 12:44:05 +0000 |
commit | 3e407aca4aad62fe7d7dea63065c0019ec9abe93 (patch) | |
tree | 7744cc2dfc9d0cb9251b76bc8514107783d6b15a /win/CS/HandBrakeWPF/Model | |
parent | 39d824512056405321ba2b192508037323f59409 (diff) |
WinGui: All the hardware acceleration options are now available view a new tab on the Options screen. This includes the OpenCL scaling, QuickSync and DXVA decode support.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@5818 b64f7644-9d1e-0410-96f1-a4d463321fa5
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,
- }
-}
|