// -------------------------------------------------------------------------------------------------------------------- // // This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License. // // // The video level factory. // // -------------------------------------------------------------------------------------------------------------------- namespace HandBrakeWPF.Services.Encode.Factories { /// /// The video tune factory. /// public class VideoLevelFactory { /// /// The get display name for a given short name. /// LibHB doesn't currently support this. /// /// /// The short name. /// /// /// The . /// public static string GetDisplayName(string shortName) { switch (shortName) { case "auto": return "Auto"; } return shortName; } } }