blob: aff0a30d5d9dda47450013520d72460778a60d58 (
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
|
namespace HandBrake.Interop
{
using System.ComponentModel.DataAnnotations;
public enum AudioEncoder
{
[Display(Name = "AAC (faac)")]
Faac = 0,
[Display(Name = "MP3 (lame)")]
Lame,
[Display(Name = "AC3 (ffmpeg)")]
Ac3,
[Display(Name = "Passthrough (AC3/DTS)")]
Passthrough,
[Display(Name = "Passthrough (AC3)")]
Ac3Passthrough,
[Display(Name = "Passthrough (DTS)")]
DtsPassthrough,
[Display(Name = "Vorbis (vorbis)")]
Vorbis
}
}
|