blob: 6dfff1076eac089da356dee0c20ad504f7ad2b7b (
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
|
/* AudioEncoder.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;
using HandBrake.ApplicationServices.Converters;
[TypeConverter(typeof(EnumToDescConveter))]
public enum AudioEncoder
{
[Description("AAC (faac)")]
Faac = 0,
[Description("AAC (ffmpeg)")]
ffaac,
[Description("MP3 (lame)")]
Lame,
[Description("AC3 (ffmpeg)")]
Ac3,
[Description("Passthru")]
Passthrough,
[Description("AC3 Passthru")]
Ac3Passthrough,
[Description("DTS Passthru")]
DtsPassthrough,
[Description("DTS-HD Passthru")]
DtsHDPassthrough,
[Description("AAC Passthru")]
AacPassthru,
[Description("MP3 Passthru")]
Mp3Passthru,
[Description("Vorbis (vorbis)")]
Vorbis
}
}
|