// -------------------------------------------------------------------------------------------------------------------- // // This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License. // // // Defines the Utilities type. // // -------------------------------------------------------------------------------------------------------------------- namespace HandBrake.ApplicationServices.Interop.Helpers { /// /// The utilities. /// internal static class Utilities { /// /// Get the Greatest Common Factor /// /// /// The a. /// /// /// The b. /// /// /// The greatest common factor /// public static int GreatestCommonFactor(int a, int b) { if (a == 0) { return b; } if (b == 0) { return a; } if (a > b) { return GreatestCommonFactor(a % b, b); } return GreatestCommonFactor(a, b % a); } } }