// --------------------------------------------------------------------------------------------------------------------
//
// This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License.
//
//
// The different scaling modes available in HandBrake
//
// --------------------------------------------------------------------------------------------------------------------
namespace HandBrake.ApplicationServices.Model
{
using System.ComponentModel.DataAnnotations;
using HandBrake.ApplicationServices.Attributes;
///
/// The different scaling modes available in HandBrake
///
public enum VideoScaler
{
[Display(Name = "Lanczos (default)")]
[ShortName("swscale")]
Lanczos = 0,
[Display(Name = "Bicubic (OpenCL)")]
[ShortName("opencl")]
BicubicCl,
}
}