// -------------------------------------------------------------------------------------------------------------------- // // 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; /// /// The different scaling modes available in HandBrake /// public enum VideoScaler { [Display(Name = "Lanczos (default)")] Lanczos = 0, // [Display(Name = "Bicubic")] // Bicubic, [Display(Name = "Bicubic (OpenCL)")] BicubicCl, } }