diff options
Diffstat (limited to 'win/CS/HandBrake.ApplicationServices/Model/Encoding/Anamorphic.cs')
-rw-r--r-- | win/CS/HandBrake.ApplicationServices/Model/Encoding/Anamorphic.cs | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/win/CS/HandBrake.ApplicationServices/Model/Encoding/Anamorphic.cs b/win/CS/HandBrake.ApplicationServices/Model/Encoding/Anamorphic.cs deleted file mode 100644 index c958b777c..000000000 --- a/win/CS/HandBrake.ApplicationServices/Model/Encoding/Anamorphic.cs +++ /dev/null @@ -1,24 +0,0 @@ -/* Anamorphic.cs $
- This file is part of the HandBrake source code.
- Homepage: <http://handbrake.fr>.
- It may be used under the terms of the GNU General Public License. */
-
-namespace HandBrake.ApplicationServices.Model.Encoding
-{
- using System.ComponentModel;
-
- /// <summary>
- /// Anamorphic Mode
- /// </summary>
- public enum Anamorphic
- {
- [Description("None")]
- None = 0,
- [Description("Strict")]
- Strict,
- [Description("Loose")]
- Loose,
- [Description("Custom")]
- Custom
- }
-}
|