// --------------------------------------------------------------------------------------------------------------------
//
// This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License.
//
//
// Defines the AudioEncoder type.
//
// --------------------------------------------------------------------------------------------------------------------
namespace HandBrake.Interop.Model.Encoding
{
using System.ComponentModel.DataAnnotations;
public enum AudioEncoder
{
[Display(Name = "AAC (faac)")]
Faac = 0,
[Display(Name = "MP3 (lame)")]
Lame,
[Display(Name = "AC3 (ffmpeg)")]
Ac3,
[Display(Name = "Passthrough (AC3/DTS)")]
Passthrough,
[Display(Name = "Passthrough (AC3)")]
Ac3Passthrough,
[Display(Name = "Vorbis (vorbis)")]
Vorbis
}
}