summaryrefslogtreecommitdiffstats
path: root/win/CS/HandBrake.ApplicationServices/Model/Encoding/Mixdown.cs
blob: 12611b454eae8da355e4e9791aa95be6a224f4c9 (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
/*  Mixdown.cs $
    This file is part of the HandBrake source code.
    Homepage: <http://handbrake.fr>.
    It may be used under the terms of the GNU General Public License. */

namespace HandBrake.ApplicationServices.Model.Encoding
{
    using System.ComponentModel;

    /// <summary>
    /// The Mixdown Mode
    /// </summary>
    public enum Mixdown
    {
        [Description("Dolby Pro Logic II")]
        DolbyProLogicII = 0,

        [Description("Auto")]
        Auto,

        [Description("Mono")]
        Mono,

        [Description("Stereo")]
        Stereo,

        [Description("Dolby Surround")]
        DolbySurround,

        [Description("6 Channel Discrete")]
        SixChannelDiscrete
    }
}