// -------------------------------------------------------------------------------------------------------------------- // // This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License. // // // Defines the DenoiseTune type. // // -------------------------------------------------------------------------------------------------------------------- namespace HandBrake.ApplicationServices.Model.Encoding { using System.ComponentModel.DataAnnotations; /// /// The denoise tune. /// public enum DenoiseTune { [Display(Name = "None")] None = 0, [Display(Name = "Film")] Film, [Display(Name = "Grain")] Grain, [Display(Name = "High Motion")] HighMotion, [Display(Name = "Animation")] Animation, } }