blob: 159ed7c30647d16c06dd04342bd8ff7bb0cadf8e (
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
|
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
namespace HandBrake.Interop
{
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
}
}
|