blob: a215474ecca2eeb25047fca713e9a6c4f72722f1 (
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
|
// --------------------------------------------------------------------------------------------------------------------
// <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>
// Defines the AudioEncoder type.
// </summary>
// --------------------------------------------------------------------------------------------------------------------
namespace HandBrake.Interop.Model.Encoding
{
using System.ComponentModel.DataAnnotations;
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 = "Passthrough")]
Passthrough,
[Display(Name = "Passthrough (AC3)")]
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
}
}
|