blob: d9faaa6a4bd699ff3aa17b3962129ac28820d2dd (
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
|
// --------------------------------------------------------------------------------------------------------------------
// <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.Interop.Model.Encoding
{
using System.ComponentModel.DataAnnotations;
using HandBrake.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)")]
QuickSync,
[Display(Name = "MPEG-4 (FFmpeg)")]
[ShortName("mpeg4")]
FFMpeg,
[Display(Name = "MPEG-2 (FFmpeg)")]
[ShortName("mpeg2")]
FFMpeg2,
[Display(Name = "VP3 (Theora)")]
[ShortName("theora")]
Theora,
[Display(Name = "H.265 (x265)")]
[ShortName("x265")]
X265
}
}
|