// --------------------------------------------------------------------------------------------------------------------
//
// This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License.
//
//
// Defines the Deinterlace type.
//
// --------------------------------------------------------------------------------------------------------------------
namespace HandBrake.Interop.Model.Encoding
{
///
/// The deinterlace.
///
public enum Deinterlace
{
Off = 0,
Fast = 2,
Slow = 3,
Slower = 4,
Bob = 5,
Custom = 1
}
}