---------------------------------------------------------------------------
| 84 | |
| 85 | //--------------------------------------------------------------------------- |
| 86 | static int64_t gcd_compute(int64_t a, int64_t b) |
| 87 | { |
| 88 | while (b) |
| 89 | { |
| 90 | unsigned t = b; |
| 91 | b = a % b; |
| 92 | a = t; |
| 93 | } |
| 94 | return a; |
| 95 | } |
| 96 | |
| 97 | //--------------------------------------------------------------------------- |
| 98 | TimeCode& TimeCode::operator +=(const TimeCode& b) |