// -------------------------------------------------------------------------------------------------------------------- // // This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License. // // // Defines the hb_job_s type. // // Disable Stylecop Warnings for this file // -------------------------------------------------------------------------------------------------------------------- namespace HandBrake.ApplicationServices.Interop.HbLib { internal enum hb_anamorphic_mode_t { HB_ANAMORPHIC_NONE, HB_ANAMORPHIC_STRICT, HB_ANAMORPHIC_LOOSE, HB_ANAMORPHIC_CUSTOM, HB_ANAMORPHIC_AUTO } ; }