mathematics.c
上传用户:wstnjxml
上传日期:2014-04-03
资源大小:7248k
文件大小:3k
源码类别:

Windows CE

开发平台:

C/C++

  1. /*
  2.  * Copyright (c) 2005 Michael Niedermayer <michaelni@gmx.at>
  3.  *
  4.  * This library is free software; you can redistribute it and/or
  5.  * modify it under the terms of the GNU Lesser General Public
  6.  * License as published by the Free Software Foundation; either
  7.  * version 2 of the License, or (at your option) any later version.
  8.  *
  9.  * This library is distributed in the hope that it will be useful,
  10.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  12.  * Lesser General Public License for more details.
  13.  *
  14.  * You should have received a copy of the GNU Lesser General Public
  15.  * License along with this library; if not, write to the Free Software
  16.  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  17.  */
  18.  
  19. /**
  20.  * @file mathematics.c
  21.  * Miscellaneous math routines and tables.
  22.  */
  23. #include "common.h"
  24. #include "integer.h"
  25. #include "mathematics.h"
  26. const uint8_t ff_sqrt_tab[128]={
  27.         0, 1, 1, 1, 2, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 5, 5, 5, 5, 5, 5, 5,
  28.         5, 5, 5, 5, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7,
  29.         8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9,
  30.         9, 9, 9, 9,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,11,11,11,11,11,11,11
  31. };
  32. const uint8_t ff_log2_tab[256]={
  33.         0,0,1,1,2,2,2,2,3,3,3,3,3,3,3,3,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,
  34.         5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,
  35.         6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,
  36.         6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,
  37.         7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
  38.         7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
  39.         7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
  40.         7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7
  41. };
  42. int64_t ff_gcd(int64_t a, int64_t b){
  43.     if(b) return ff_gcd(b, a%b);
  44.     else  return a;
  45. }
  46. int64_t av_rescale_rnd(int64_t a, int64_t b, int64_t c, enum AVRounding rnd){
  47.     AVInteger ai;
  48.     int64_t r=0;
  49.     assert(c > 0);
  50.     assert(b >=0);
  51.     assert(rnd >=0 && rnd<=5 && rnd!=4);
  52.     
  53.     if(a<0 && a != INT64_MIN) return -av_rescale_rnd(-a, b, c, rnd ^ ((rnd>>1)&1)); 
  54.     
  55.     if(rnd==AV_ROUND_NEAR_INF) r= c/2;
  56.     else if(rnd&1)             r= c-1;
  57.     if(b<=INT_MAX && c<=INT_MAX){
  58.         if(a<=INT_MAX)
  59.             return (a * b + r)/c;
  60.         else
  61.             return a/c*b + (a%c*b + r)/c;
  62.     }
  63.     
  64.     ai= av_mul_i(av_int2i(a), av_int2i(b));
  65.     ai= av_add_i(ai, av_int2i(r));
  66.     
  67.     return av_i2int(av_div_i(ai, av_int2i(c)));
  68. }
  69. int64_t av_rescale(int64_t a, int64_t b, int64_t c){
  70.     return av_rescale_rnd(a, b, c, AV_ROUND_NEAR_INF);
  71. }
  72. int64_t av_rescale_q(int64_t a, AVRational bq, AVRational cq){
  73.     int64_t b= bq.num * (int64_t)cq.den;
  74.     int64_t c= cq.num * (int64_t)bq.den;
  75.     return av_rescale_rnd(a, b, c, AV_ROUND_NEAR_INF);
  76. }