// -------------------------------------------------------------------------------------------------------------------- // // 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.Interop.Model { using HandBrake.Interop.Attributes; /// /// The different scaling modes available in HandBrake /// public enum VideoScaler { [DisplayName("Lanczos (default)")] [ShortName("swscale")] Lanczos = 0, } }