// -------------------------------------------------------------------------------------------------------------------- // // This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License. // // // Scaling Method // // -------------------------------------------------------------------------------------------------------------------- namespace HandBrake.ApplicationServices.Interop.Model.Encoding { /// /// Enumeration of rescaling algorithms. /// public enum ScaleMethod { /// /// Standard software scaling. Highest quality. /// Lanczos = 0, /// /// OpenCL-assisted bicubic scaling. /// Bicubic = 1 } }