blob: 18ad084f3a9b8478d2638bdd8ef9540ff03098d3 (
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="AudioList.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>
// The audio list.
// </summary>
// --------------------------------------------------------------------------------------------------------------------
namespace HandBrake.ApplicationServices.Interop.Json.Scan
{
/// <summary>
/// The audio list.
/// </summary>
internal class AudioList
{
/// <summary>
/// Gets or sets the bit rate.
/// </summary>
public int BitRate { get; set; }
/// <summary>
/// Gets or sets the channel layout.
/// </summary>
public int ChannelLayout { get; set; }
/// <summary>
/// Gets or sets the description.
/// </summary>
public string Description { get; set; }
/// <summary>
/// Gets or sets the language.
/// </summary>
public string Language { get; set; }
/// <summary>
/// Gets or sets the language code.
/// </summary>
public string LanguageCode { get; set; }
/// <summary>
/// Gets or sets the sample rate.
/// </summary>
public int SampleRate { get; set; }
/// <summary>
/// Gets or sets the codec.
/// </summary>
public int Codec { get; set; }
}
}
|