You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

62 lines
1.7KB

  1. /*
  2. * Rational numbers
  3. * Copyright (c) 2003 Michael Niedermayer <michaelni@gmx.at>
  4. *
  5. * This library is free software; you can redistribute it and/or
  6. * modify it under the terms of the GNU Lesser General Public
  7. * License as published by the Free Software Foundation; either
  8. * version 2 of the License, or (at your option) any later version.
  9. *
  10. * This library is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  13. * Lesser General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU Lesser General Public
  16. * License along with this library; if not, write to the Free Software
  17. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  18. *
  19. */
  20. /**
  21. * @file rational.h
  22. * Rational numbers.
  23. * @author Michael Niedermayer <michaelni@gmx.at>
  24. */
  25. #ifndef RATIONAL_H
  26. #define RATIONAL_H
  27. /**
  28. * Rational number num/den.
  29. */
  30. typedef struct AVRational{
  31. int num; ///< numerator
  32. int den; ///< denominator
  33. } AVRational;
  34. /**
  35. * returns 0 if a==b, 1 if a>b and -1 if a<b.
  36. */
  37. static inline int av_cmp_q(AVRational a, AVRational b){
  38. const int64_t tmp= a.num * (int64_t)b.den - b.num * (int64_t)a.den;
  39. if(tmp) return (tmp>>63)|1;
  40. else return 0;
  41. }
  42. /**
  43. * converts the given AVRational to a double.
  44. */
  45. static inline double av_q2d(AVRational a){
  46. return a.num / (double) a.den;
  47. }
  48. AVRational av_mul_q(AVRational b, AVRational c);
  49. AVRational av_div_q(AVRational b, AVRational c);
  50. AVRational av_add_q(AVRational b, AVRational c);
  51. AVRational av_sub_q(AVRational b, AVRational c);
  52. AVRational av_d2q(double d, int max);
  53. #endif // RATIONAL_H