libavutil/mathematics.c
c11c2bc2
 /*
90d4b070
  * Copyright (c) 2005-2012 Michael Niedermayer <michaelni@gmx.at>
c11c2bc2
  *
b78e7197
  * This file is part of FFmpeg.
  *
  * FFmpeg is free software; you can redistribute it and/or
c11c2bc2
  * modify it under the terms of the GNU Lesser General Public
  * License as published by the Free Software Foundation; either
b78e7197
  * version 2.1 of the License, or (at your option) any later version.
c11c2bc2
  *
b78e7197
  * FFmpeg is distributed in the hope that it will be useful,
c11c2bc2
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
b78e7197
  * License along with FFmpeg; if not, write to the Free Software
5509bffa
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
c11c2bc2
  */
115329f1
 
c11c2bc2
 /**
ba87f080
  * @file
89c9ff50
  * miscellaneous math routines and tables
c11c2bc2
  */
 
2ed6f399
 #include <stdint.h>
 #include <limits.h>
d5c62122
 
c11c2bc2
 #include "mathematics.h"
971d12b7
 #include "libavutil/intmath.h"
a18eff49
 #include "libavutil/common.h"
2f23a8ab
 #include "avassert.h"
d5c62122
 #include "version.h"
c11c2bc2
 
971d12b7
 /* Stein's binary GCD algorithm:
  * https://en.wikipedia.org/wiki/Binary_GCD_algorithm */
 int64_t av_gcd(int64_t a, int64_t b) {
     int za, zb, k;
     int64_t u, v;
     if (a == 0)
         return b;
     if (b == 0)
de69aedf
         return a;
971d12b7
     za = ff_ctzll(a);
     zb = ff_ctzll(b);
     k  = FFMIN(za, zb);
     u = llabs(a >> za);
     v = llabs(b >> zb);
     while (u != v) {
         if (u > v)
             FFSWAP(int64_t, v, u);
         v -= u;
         v >>= ff_ctzll(v);
     }
b7fb7c45
     return (uint64_t)u << k;
c11c2bc2
 }
 
de69aedf
 int64_t av_rescale_rnd(int64_t a, int64_t b, int64_t c, enum AVRounding rnd)
 {
     int64_t r = 0;
2f23a8ab
     av_assert2(c > 0);
     av_assert2(b >=0);
740e7408
     av_assert2((unsigned)(rnd&~AV_ROUND_PASS_MINMAX)<=5 && (rnd&~AV_ROUND_PASS_MINMAX)!=4);
 
3929c174
     if (c <= 0 || b < 0 || !((unsigned)(rnd&~AV_ROUND_PASS_MINMAX)<=5 && (rnd&~AV_ROUND_PASS_MINMAX)!=4))
94a417ac
         return INT64_MIN;
115329f1
 
740e7408
     if (rnd & AV_ROUND_PASS_MINMAX) {
         if (a == INT64_MIN || a == INT64_MAX)
             return a;
         rnd -= AV_ROUND_PASS_MINMAX;
     }
115329f1
 
25e37f5e
     if (a < 0)
f03c2cee
         return -(uint64_t)av_rescale_rnd(-FFMAX(a, -INT64_MAX), b, c, rnd ^ ((rnd >> 1) & 1));
115329f1
 
de69aedf
     if (rnd == AV_ROUND_NEAR_INF)
         r = c / 2;
     else if (rnd & 1)
         r = c - 1;
c11c2bc2
 
de69aedf
     if (b <= INT_MAX && c <= INT_MAX) {
         if (a <= INT_MAX)
             return (a * b + r) / c;
f03c2cee
         else {
             int64_t ad = a / c;
             int64_t a2 = (a % c * b + r) / c;
bc8b1e69
             if (ad >= INT32_MAX && b && ad > (INT64_MAX - a2) / b)
f03c2cee
                 return INT64_MIN;
             return ad * b + a2;
         }
de69aedf
     } else {
fdb3a341
 #if 1
de69aedf
         uint64_t a0  = a & 0xFFFFFFFF;
         uint64_t a1  = a >> 32;
         uint64_t b0  = b & 0xFFFFFFFF;
         uint64_t b1  = b >> 32;
         uint64_t t1  = a0 * b1 + a1 * b0;
         uint64_t t1a = t1 << 32;
fdb3a341
         int i;
 
de69aedf
         a0  = a0 * b0 + t1a;
         a1  = a1 * b1 + (t1 >> 32) + (a0 < t1a);
fdb3a341
         a0 += r;
de69aedf
         a1 += a0 < r;
115329f1
 
de69aedf
         for (i = 63; i >= 0; i--) {
             a1 += a1 + ((a0 >> i) & 1);
             t1 += t1;
             if (c <= a1) {
fdb3a341
                 a1 -= c;
                 t1++;
             }
         }
f03c2cee
         if (t1 > INT64_MAX)
             return INT64_MIN;
fdb3a341
         return t1;
     }
 #else
         AVInteger ai;
de69aedf
         ai = av_mul_i(av_int2i(a), av_int2i(b));
         ai = av_add_i(ai, av_int2i(r));
115329f1
 
fdb3a341
         return av_i2int(av_div_i(ai, av_int2i(c)));
     }
 #endif
c11c2bc2
 }
 
de69aedf
 int64_t av_rescale(int64_t a, int64_t b, int64_t c)
 {
c11c2bc2
     return av_rescale_rnd(a, b, c, AV_ROUND_NEAR_INF);
 }
 
0b42a938
 int64_t av_rescale_q_rnd(int64_t a, AVRational bq, AVRational cq,
                          enum AVRounding rnd)
 {
de69aedf
     int64_t b = bq.num * (int64_t)cq.den;
     int64_t c = cq.num * (int64_t)bq.den;
0b42a938
     return av_rescale_rnd(a, b, c, rnd);
 }
 
 int64_t av_rescale_q(int64_t a, AVRational bq, AVRational cq)
 {
     return av_rescale_q_rnd(a, bq, cq, AV_ROUND_NEAR_INF);
c11c2bc2
 }
f0cb505a
 
de69aedf
 int av_compare_ts(int64_t ts_a, AVRational tb_a, int64_t ts_b, AVRational tb_b)
 {
     int64_t a = tb_a.num * (int64_t)tb_b.den;
     int64_t b = tb_b.num * (int64_t)tb_a.den;
bc4b424d
     if ((FFABS(ts_a)|a|FFABS(ts_b)|b) <= INT_MAX)
a18eff49
         return (ts_a*a > ts_b*b) - (ts_a*a < ts_b*b);
de69aedf
     if (av_rescale_rnd(ts_a, a, b, AV_ROUND_DOWN) < ts_b)
         return -1;
     if (av_rescale_rnd(ts_b, b, a, AV_ROUND_DOWN) < ts_a)
         return 1;
78b01823
     return 0;
 }
 
de69aedf
 int64_t av_compare_mod(uint64_t a, uint64_t b, uint64_t mod)
 {
     int64_t c = (a - b) & (mod - 1);
     if (c > (mod >> 1))
         c -= mod;
65db0587
     return c;
 }
8766ad9e
 
 int64_t av_rescale_delta(AVRational in_tb, int64_t in_ts,  AVRational fs_tb, int duration, int64_t *last, AVRational out_tb){
     int64_t a, b, this;
 
     av_assert0(in_ts != AV_NOPTS_VALUE);
     av_assert0(duration >= 0);
 
     if (*last == AV_NOPTS_VALUE || !duration || in_tb.num*(int64_t)out_tb.den <= out_tb.num*(int64_t)in_tb.den) {
 simple_round:
         *last = av_rescale_q(in_ts, in_tb, fs_tb) + duration;
         return av_rescale_q(in_ts, in_tb, out_tb);
     }
 
     a =  av_rescale_q_rnd(2*in_ts-1, in_tb, fs_tb, AV_ROUND_DOWN)   >>1;
     b = (av_rescale_q_rnd(2*in_ts+1, in_tb, fs_tb, AV_ROUND_UP  )+1)>>1;
     if (*last < 2*a - b || *last > 2*b - a)
         goto simple_round;
 
     this = av_clip64(*last, a, b);
     *last = this + duration;
 
     return av_rescale_q(this, fs_tb, out_tb);
 }
b317f945
 
 int64_t av_add_stable(AVRational ts_tb, int64_t ts, AVRational inc_tb, int64_t inc)
 {
e9add0d8
     int64_t m, d;
 
4956d0e5
     if (inc != 1)
         inc_tb = av_mul_q(inc_tb, (AVRational) {inc, 1});
b317f945
 
e9add0d8
     m = inc_tb.num * (int64_t)ts_tb.den;
     d = inc_tb.den * (int64_t)ts_tb.num;
 
     if (m % d == 0)
         return ts + m / d;
666e29fe
     if (m < d)
b317f945
         return ts;
666e29fe
 
     {
5b7519fb
         int64_t old = av_rescale_q(ts, ts_tb, inc_tb);
         int64_t old_ts = av_rescale_q(old, inc_tb, ts_tb);
         return av_rescale_q(old + 1, inc_tb, ts_tb) + (ts - old_ts);
b317f945
     }
 }