// -------------------------------------------------------------------------------------------------------------------- // // This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License. // // // The audio behaviours. // // -------------------------------------------------------------------------------------------------------------------- namespace HandBrakeWPF.Model.Audio { using HandBrake.Interop.Attributes; /// /// The audio behaviours. /// public enum AudioBehaviourModes { [DisplayName("No Audio")] [ShortName("none")] None = 0, [DisplayName("First Matching Selected Language")] [ShortName("first")] FirstMatch, [DisplayName("All Matching Selected Languages")] [ShortName("all")] AllMatching, } }