// -------------------------------------------------------------------------------------------------------------------- // // This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License. // // // Defines the Mixdown type. // // -------------------------------------------------------------------------------------------------------------------- namespace HandBrake.Interop.Model.Encoding { using System.ComponentModel.DataAnnotations; /// /// The Audio Mixdown Enumeration /// public enum Mixdown { [Display(Name = "Dolby Pro Logic II")] DolbyProLogicII = 0, [Display(Name = "None")] None, [Display(Name = "Automatic")] Auto, [Display(Name = "Mono")] Mono, [Display(Name = "Mono (Left Only)")] LeftOnly, [Display(Name = "Mono (Right Only)")] RightOnly, [Display(Name = "Stereo")] Stereo, [Display(Name = "Dolby Surround")] DolbySurround, [Display(Name = "5.1 Channels")] FivePoint1Channels, [Display(Name = "6.1 Channels")] SixPoint1Channels, [Display(Name = "7.1 Channels")] SevenPoint1Channels, [Display(Name = "7.1 (5F/2R/LFE)")] Five_2_LFE, } }