// -------------------------------------------------------------------------------------------------------------------- // // This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License. // // // Defines the Decomb type. // // -------------------------------------------------------------------------------------------------------------------- namespace HandBrake.ApplicationServices.Interop.Model.Encoding { using HandBrake.ApplicationServices.Attributes; /// /// The decomb. /// public enum Decomb { [ShortName("default")] Default, [ShortName("bob")] Bob, [ShortName("custom")] Custom, [ShortName("eedi2")] EEDI2, [ShortName("eedi2bob")] EEDI2Bob } }