blob: ad2bc90631c3b59d13d94612bd517be7b15413a0 (
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
|
// --------------------------------------------------------------------------------------------------------------------
// <copyright file="x264Profile.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 X264 Profile
// </summary>
// --------------------------------------------------------------------------------------------------------------------
namespace HandBrake.Interop.Model.Encoding.x264
{
using System.ComponentModel.DataAnnotations;
/// <summary>
/// The X264 Profile
/// </summary>
public enum x264Profile
{
[Display(Name = "Auto")]
None = 0,
[Display(Name = "Baseline")]
Baseline,
[Display(Name = "Main")]
Main,
[Display(Name = "High")]
High,
//[Display(Name = "High 10")]
//High10, HandBrake does not yet support 10bit.
//[Display(Name = "High 422")]
//High422, Not supported
//[Display(Name = "High 444")]
// High444, Use Auto Instead.
}
}
|