summaryrefslogtreecommitdiffstats
path: root/win/CS/HandBrake.ApplicationServices/Interop/Model/Encoding/Mixdown.cs
blob: 05f554e6b920f3dbe83da2a34cf26cc05bdfe396 (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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
// --------------------------------------------------------------------------------------------------------------------
// <copyright file="Mixdown.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>
// <summary>
//   Defines the Mixdown type.
// </summary>
// --------------------------------------------------------------------------------------------------------------------

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

    /// <summary>
    /// The Audio Mixdown Enumeration
    /// </summary>
    public enum Mixdown
    {
        [Display(Name = "Dolby Pro Logic II")]
        [ShortName("dpl2")]
        DolbyProLogicII = 0,

        [Display(Name = "None")]
        [ShortName("dpl2")]
        None,

        [Display(Name = "Automatic")]
        [ShortName("dpl2")]
        Auto,

        [Display(Name = "Mono")]
        [ShortName("mono")]
        Mono,

        [Display(Name = "Mono (Left Only)")]
        [ShortName("left_only")]
        LeftOnly,

        [Display(Name = "Mono (Right Only)")]
        [ShortName("right_only")]
        RightOnly,

        [Display(Name = "Stereo")]
        [ShortName("stereo")]
        Stereo,

        [Display(Name = "Dolby Surround")]
        [ShortName("dpl1")]
        DolbySurround,

        [Display(Name = "5.1 Channels")]
        [ShortName("5point1")]
        FivePoint1Channels,

        [Display(Name = "6.1 Channels")]
        [ShortName("6point1")]
        SixPoint1Channels,

        [Display(Name = "7.1 Channels")]
        [ShortName("7point1")]
        SevenPoint1Channels,

        [Display(Name = "7.1 (5F/2R/LFE)")]
        [ShortName("5_2_lfe")]
        Five_2_LFE,
    }
}