summaryrefslogtreecommitdiffstats
path: root/win/CS/HandBrake.Interop/HandBrakeInterop/Model/Encoding/AudioEncoder.cs
blob: 492d51d9af851640cc701fb10a7049b277449d69 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
// --------------------------------------------------------------------------------------------------------------------
// <copyright file="AudioEncoder.cs" company="HandBrake Project (http://handbrake.fr)">
//   This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License.
// </copyright>
// --------------------------------------------------------------------------------------------------------------------

namespace HandBrake.Interop.Model.Encoding
{
    using System.ComponentModel.DataAnnotations;

    /// <summary>
    /// The audio encoder.
    /// </summary>
    public enum AudioEncoder
    {
        [Display(Name = "AAC (faac)")]
        Faac = 0,

        [Display(Name = "AAC (ffmpeg)")]
        ffaac,

        [Display(Name = "MP3 (lame)")]
        Lame,

        [Display(Name = "AC3 (ffmpeg)")]
        Ac3,

        [Display(Name = "Passthrough")]
        Passthrough,

        [Display(Name = "AC3 Passthru")]
        Ac3Passthrough,

        [Display(Name = "DTS Passthru")]
        DtsPassthrough,

        [Display(Name = "DTS-HD Passthru")]
        DtsHDPassthrough,

        [Display(Name = "AAC Passthru")]
        AacPassthru,

        [Display(Name = "MP3 Passthru")]
        Mp3Passthru,

        [Display(Name = "Vorbis (vorbis)")]
        Vorbis,

        [Display(Name = "Flac (ffmpeg)")]
        ffflac
    }
}