// --------------------------------------------------------------------------------------------------------------------
//
// This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License.
//
//
// The audio encoder enumeration
//
// --------------------------------------------------------------------------------------------------------------------
namespace HandBrake.Interop.Model.Encoding
{
using System.ComponentModel.DataAnnotations;
using HandBrake.Interop.Attributes;
///
/// The audio encoder.
///
public enum AudioEncoder
{
[Display(Name = "AAC (faac)")]
[ShortName("faac")]
faac = 0,
[Display(Name = "AAC (avcodec)")]
[ShortName("av_aac")]
ffaac,
[Display(Name = "AAC (FDK)")]
[ShortName("fdk_aac")]
fdkaac,
[Display(Name = "HE-AAC (FDK)")]
[ShortName("fdk_haac")]
fdkheaac,
[Display(Name = "MP3")]
[ShortName("mp3")]
Lame,
[Display(Name = "AC3")]
[ShortName("ac3")]
Ac3,
[Display(Name = "Auto Passthru")]
[ShortName("copy")]
Passthrough,
[Display(Name = "AC3 Passthru")]
[ShortName("copy:ac3")]
Ac3Passthrough,
[Display(Name = "DTS Passthru")]
[ShortName("copy:dts")]
DtsPassthrough,
[Display(Name = "DTS-HD Passthru")]
[ShortName("copy:dtshd")]
DtsHDPassthrough,
[Display(Name = "AAC Passthru")]
[ShortName("copy:aac")]
AacPassthru,
[Display(Name = "MP3 Passthru")]
[ShortName("copy:mp3")]
Mp3Passthru,
[Display(Name = "Vorbis")]
[ShortName("vorbis")]
Vorbis,
[Display(Name = "FLAC 16-bit")]
[ShortName("flac16")]
ffflac,
[Display(Name = "FLAC 24-bit")]
[ShortName("flac24")]
ffflac24,
}
}