diff options
author | sr55 <[email protected]> | 2021-02-04 20:56:23 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2021-02-04 20:56:23 +0000 |
commit | aa71590c27fed3e0aa1f14c9c886e299cb1a15f1 (patch) | |
tree | 48d33d173238d9b34ea287608c0e6786907636dc /win/CS/HandBrakeWPF/Model | |
parent | db589c5559f2e556592db10b052ed688fa199b0e (diff) |
WinGui: Another smaller found of Namespace changes for HandBrake.Interop
Diffstat (limited to 'win/CS/HandBrakeWPF/Model')
-rw-r--r-- | win/CS/HandBrakeWPF/Model/Video/VideoScaler.cs | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/win/CS/HandBrakeWPF/Model/Video/VideoScaler.cs b/win/CS/HandBrakeWPF/Model/Video/VideoScaler.cs new file mode 100644 index 000000000..01624433e --- /dev/null +++ b/win/CS/HandBrakeWPF/Model/Video/VideoScaler.cs @@ -0,0 +1,23 @@ +// -------------------------------------------------------------------------------------------------------------------- +// <copyright file="VideoScaler.cs" company="HandBrake Project (https://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.Video +{ + using HandBrake.Interop.Attributes; + + /// <summary> + /// The different scaling modes available in HandBrake + /// </summary> + public enum VideoScaler + { + [DisplayName("Lanczos (default)")] + [ShortName("swscale")] + Lanczos = 0, + } +} |