// -------------------------------------------------------------------------------------------------------------------- // // This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License. // // // Defines the AudioCodec type. // // -------------------------------------------------------------------------------------------------------------------- namespace HandBrake.Interop.SourceData { /// /// The audio codec. /// Only contains 2 real codecs at the moment as those are what we care about. More will be added later. /// public enum AudioCodec { /// /// The ac 3. /// Ac3, /// /// The dts. /// Dts, /// /// The dts hd. /// DtsHD, /// /// The mp 3. /// Mp3, /// /// The aac. /// Aac, /// /// The other. /// Other, /// /// The flac. /// Flac, } }