blob: ce88223bba03f493c31fb29aa38a50c02ba1df06 (
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="VideoEncoder.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 video encoder.
// </summary>
// --------------------------------------------------------------------------------------------------------------------
namespace HandBrake.ApplicationServices.Interop.Model.Encoding
{
using System.ComponentModel.DataAnnotations;
using HandBrake.ApplicationServices.Interop.Attributes;
/// <summary>
/// The video encoder.
/// </summary>
public enum VideoEncoder
{
[Display(Name = "H.264 (x264)")]
[ShortName("x264")]
X264 = 0,
[Display(Name = "H.264 (Intel QSV)")]
[ShortName("qsv_h264")]
QuickSync,
[Display(Name = "MPEG-4")]
[ShortName("mpeg4")]
FFMpeg,
[Display(Name = "MPEG-2")]
[ShortName("mpeg2")]
FFMpeg2,
[Display(Name = "Theora")]
[ShortName("theora")]
Theora,
[Display(Name = "H.265 (x265)")]
[ShortName("x265")]
X265,
[Display(Name = "VP8")]
[ShortName("vp8")]
VP8
}
}
|