// --------------------------------------------------------------------------------------------------------------------
//
// This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License.
//
//
// Defines the VideoEncoder type.
//
// --------------------------------------------------------------------------------------------------------------------
namespace HandBrake.Interop.Model.Encoding
{
public enum VideoEncoder
{
[DisplayString("H.264 (x264)")]
X264 = 0,
[DisplayString("MPEG-4 (FFMpeg)")]
FFMpeg,
[DisplayString("VP3 (Theora)")]
Theora
}
}