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.

54 lines
1.6KB

  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. typedef struct AVRational{
  28. int num;
  29. int den;
  30. } AVRational;
  31. static inline int av_cmp_q(AVRational a, AVRational b){
  32. const int64_t tmp= a.num * (int64_t)b.den - b.num * (int64_t)a.den;
  33. if (tmp < 0) return -1;
  34. else if(tmp == 0) return 0;
  35. else return 1;
  36. }
  37. static inline double av_q2d(AVRational a){
  38. return a.num / (double) a.den;
  39. }
  40. AVRational av_mul_q(AVRational b, AVRational c);
  41. AVRational av_div_q(AVRational b, AVRational c);
  42. AVRational av_add_q(AVRational b, AVRational c);
  43. AVRational av_sub_q(AVRational b, AVRational c);
  44. AVRational av_d2q(double d, int max);
  45. #endif // RATIONAL_H