blob: f0faac2ba384441b054219ac55d050bbc879f696 (
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
|
// --------------------------------------------------------------------------------------------------------------------
// <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>
// Defines the VideoEncoder type.
// </summary>
// --------------------------------------------------------------------------------------------------------------------
namespace HandBrake.Interop.Model.Encoding
{
using System.ComponentModel.DataAnnotations;
public enum VideoEncoder
{
[Display(Name = "H.264 (x264)")]
X264 = 0,
[Display(Name = "MPEG-4 (FFMpeg)")]
FFMpeg,
[Display(Name = "VP3 (Theora)")]
Theora
}
}
|