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
54
55
56
57
58
|
// --------------------------------------------------------------------------------------------------------------------
// <copyright file="AudioEncoder.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 encoder enumeration
// </summary>
// --------------------------------------------------------------------------------------------------------------------
namespace HandBrake.Interop.Model.Encoding
{
using System.ComponentModel.DataAnnotations;
/// <summary>
/// The audio encoder.
/// </summary>
public enum AudioEncoder
{
[Display(Name = "AAC (faac)")]
Faac = 0,
[Display(Name = "AAC (ffmpeg)")]
ffaac,
[Display(Name = "MP3 (lame)")]
Lame,
[Display(Name = "AC3 (ffmpeg)")]
Ac3,
[Display(Name = "Auto Passthru")]
Passthrough,
[Display(Name = "AC3 Passthru")]
Ac3Passthrough,
[Display(Name = "DTS Passthru")]
DtsPassthrough,
[Display(Name = "DTS-HD Passthru")]
DtsHDPassthrough,
[Display(Name = "AAC Passthru")]
AacPassthru,
[Display(Name = "MP3 Passthru")]
Mp3Passthru,
[Display(Name = "Vorbis (vorbis)")]
Vorbis,
[Display(Name = "FLAC (ffmpeg)")]
ffflac,
[Display(Name = "FLAC (24-bit)")]
ffflac24,
}
}
|