summaryrefslogtreecommitdiffstats
path: root/win/CS/HandBrake.Interop/HandBrakeInterop/Model/Encoding/x264/x264Preset.cs
blob: d0bb915a4ef8d08fc546df0b74ebfdd49f4f4732 (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
50
51
52
// --------------------------------------------------------------------------------------------------------------------
// <copyright file="x264Preset.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 x264Preset type.
// </summary>
// --------------------------------------------------------------------------------------------------------------------

namespace HandBrake.Interop.Model.Encoding.x264
{
    using System.ComponentModel.DataAnnotations;

    /// <summary>
    /// The X264 Preset
    /// </summary>
    public enum x264Preset
    {
        [Display(Name = "None")]
        None = 0,

        [Display(Name = "Ultrafast")]
        Ultrafast,

        [Display(Name = "Super Fast")]
        Superfast,

        [Display(Name = "Very Fast")]
        VeryFast,

        [Display(Name = "Faster")]
        Faster,

        [Display(Name = "Fast")]
        Fast,

        [Display(Name = "Medium")]
        Medium,

        [Display(Name = "Slow")]
        Slow,

        [Display(Name = "Slower")]
        Slower,

        [Display(Name = "Very Slow")]
        VerySlow,

        [Display(Name = "Placebo")]
        Placebo,
    }
}