// -------------------------------------------------------------------------------------------------------------------- // // This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License. // // // Defines the Anamorphic type. // // -------------------------------------------------------------------------------------------------------------------- namespace HandBrake.ApplicationServices.Interop.Model.Encoding { using System.ComponentModel.DataAnnotations; using HandBrake.ApplicationServices.Attributes; /// /// The anamorphic. /// public enum Anamorphic { [Display(Name = "None")] [ShortName("none")] None = 0, [Display(Name = "Automatic")] [ShortName("auto")] Automatic = 4, [Display(Name = "Loose")] [ShortName("loose")] Loose = 2, [Display(Name = "Custom")] [ShortName("custom")] Custom = 3 } }