// -------------------------------------------------------------------------------------------------------------------- // // This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License. // // // Defines the Denoise type. // // -------------------------------------------------------------------------------------------------------------------- namespace HandBrake.ApplicationServices.Interop.Model.Encoding { using HandBrake.ApplicationServices.Attributes; /// /// The denoise. /// public enum Denoise { [ShortName("off")] Off = 0, [ShortName("hqdn3d")] hqdn3d = 1, [ShortName("nlmeans")] NLMeans = 2, } }