// -------------------------------------------------------------------------------------------------------------------- // // This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License. // // // The Mode of Video Encoding. CFR, VFR, PFR // // -------------------------------------------------------------------------------------------------------------------- namespace HandBrakeWPF.Services.Encode.Model.Models { using HandBrake.ApplicationServices.Attributes; /// /// The Mode of Video Encoding. CFR, VFR, PFR /// public enum FramerateMode { [ShortName("cfr")] CFR = 0, [ShortName("pfr")] PFR, [ShortName("vfr")] VFR } }