// -------------------------------------------------------------------------------------------------------------------- // // 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 HandBrakeWPF.Services.Encode.Model.Models { using System.ComponentModel.DataAnnotations; using HandBrake.ApplicationServices.Attributes; /// /// The denoise tune. /// public enum DenoiseTune { [DisplayName("None")] [ShortName("none")] None = 0, [DisplayName("Film")] [ShortName("film")] Film, [DisplayName("Grain")] [ShortName("grain")] Grain, [DisplayName("High Motion")] [ShortName("highmotion")] HighMotion, [DisplayName("Animation")] [ShortName("animation")] Animation, [DisplayName("Tape")] [ShortName("tape")] Tape, [DisplayName("Sprite")] [ShortName("sprite")] Sprite, } }