blob: dce9473113c652477d6e829de43bbf01b53266d3 (
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
|
// --------------------------------------------------------------------------------------------------------------------
// <copyright file="AudioCodec.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 AudioCodec type.
// </summary>
// --------------------------------------------------------------------------------------------------------------------
namespace HandBrake.Interop.SourceData
{
/// <summary>
/// The audio codec.
/// Only contains 2 real codecs at the moment as those are what we care about. More will be added later.
/// </summary>
public enum AudioCodec
{
/// <summary>
/// The ac 3.
/// </summary>
Ac3,
/// <summary>
/// The dts.
/// </summary>
Dts,
/// <summary>
/// The dts hd.
/// </summary>
DtsHD,
/// <summary>
/// The mp 3.
/// </summary>
Mp3,
/// <summary>
/// The aac.
/// </summary>
Aac,
/// <summary>
/// The other.
/// </summary>
Other,
/// <summary>
/// The flac.
/// </summary>
Flac
}
}
|