summaryrefslogtreecommitdiffstats
path: root/win/C#/Model/AudioTrack.cs
blob: 410cfa59ee8cd60126d26558a8aecd8ee2351f6a (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
/*  AudioTrack.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.Model
{
    /// <summary>
    /// An Audio Track for the Audio Panel
    /// </summary>
    public class AudioTrack
    {
        /// <summary>
        /// Initializes a new instance of the <see cref="AudioTrack"/> class. 
        /// Audio Track instance
        /// </summary>
        public AudioTrack()
        {
            // Default Values
            this.Track = "Automatic";
            this.MixDown = "Automatic";
            this.SampleRate = "Auto";
            this.Bitrate = "Auto";
            this.DRC = "1";
        }

        /// <summary>
        /// Gets or sets Audio Track Name
        /// </summary>
        public string Track { get; set; }

        /// <summary>
        /// Gets or sets Audio Mixdown
        /// </summary>
        public string MixDown { get; set; }

        /// <summary>
        /// Gets or sets Audio Encoder
        /// </summary>
        public string Encoder { get; set; }

        /// <summary>
        /// Gets or sets Audio Bitrate
        /// </summary>
        public string Bitrate { get; set; }

        /// <summary>
        /// Gets or sets Audio SampleRate
        /// </summary>
        public string SampleRate { get; set; }

        /// <summary>
        /// Gets or sets Dynamic Range Compression
        /// </summary>
        public string DRC { get; set; }
    }
}