rational.h 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166
  1. /*
  2. * rational numbers
  3. * Copyright (c) 2003 Michael Niedermayer <michaelni@gmx.at>
  4. *
  5. * This file is part of FFmpeg.
  6. *
  7. * FFmpeg is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU Lesser General Public
  9. * License as published by the Free Software Foundation; either
  10. * version 2.1 of the License, or (at your option) any later version.
  11. *
  12. * FFmpeg is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * Lesser General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU Lesser General Public
  18. * License along with FFmpeg; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  20. */
  21. /**
  22. * @file
  23. * rational numbers
  24. * @author Michael Niedermayer <michaelni@gmx.at>
  25. */
  26. #ifndef AVUTIL_RATIONAL_H
  27. #define AVUTIL_RATIONAL_H
  28. #include <stdint.h>
  29. #include <limits.h>
  30. #include "attributes.h"
  31. /**
  32. * @addtogroup lavu_math
  33. * @{
  34. */
  35. /**
  36. * rational number numerator/denominator
  37. */
  38. typedef struct AVRational{
  39. int num; ///< numerator
  40. int den; ///< denominator
  41. } AVRational;
  42. /**
  43. * Create a rational.
  44. * Useful for compilers that do not support compound literals.
  45. * @note The return value is not reduced.
  46. */
  47. static inline AVRational av_make_q(int num, int den)
  48. {
  49. AVRational r = { num, den };
  50. return r;
  51. }
  52. /**
  53. * Compare two rationals.
  54. * @param a first rational
  55. * @param b second rational
  56. * @return 0 if a==b, 1 if a>b, -1 if a<b, and INT_MIN if one of the
  57. * values is of the form 0/0
  58. */
  59. static inline int av_cmp_q(AVRational a, AVRational b){
  60. const int64_t tmp= a.num * (int64_t)b.den - b.num * (int64_t)a.den;
  61. if(tmp) return (int)((tmp ^ a.den ^ b.den)>>63)|1;
  62. else if(b.den && a.den) return 0;
  63. else if(a.num && b.num) return (a.num>>31) - (b.num>>31);
  64. else return INT_MIN;
  65. }
  66. /**
  67. * Convert rational to double.
  68. * @param a rational to convert
  69. * @return (double) a
  70. */
  71. static inline double av_q2d(AVRational a){
  72. return a.num / (double) a.den;
  73. }
  74. /**
  75. * Reduce a fraction.
  76. * This is useful for framerate calculations.
  77. * @param dst_num destination numerator
  78. * @param dst_den destination denominator
  79. * @param num source numerator
  80. * @param den source denominator
  81. * @param max the maximum allowed for dst_num & dst_den
  82. * @return 1 if exact, 0 otherwise
  83. */
  84. int av_reduce(int *dst_num, int *dst_den, int64_t num, int64_t den, int64_t max);
  85. /**
  86. * Multiply two rationals.
  87. * @param b first rational
  88. * @param c second rational
  89. * @return b*c
  90. */
  91. AVRational av_mul_q(AVRational b, AVRational c) av_const;
  92. /**
  93. * Divide one rational by another.
  94. * @param b first rational
  95. * @param c second rational
  96. * @return b/c
  97. */
  98. AVRational av_div_q(AVRational b, AVRational c) av_const;
  99. /**
  100. * Add two rationals.
  101. * @param b first rational
  102. * @param c second rational
  103. * @return b+c
  104. */
  105. AVRational av_add_q(AVRational b, AVRational c) av_const;
  106. /**
  107. * Subtract one rational from another.
  108. * @param b first rational
  109. * @param c second rational
  110. * @return b-c
  111. */
  112. AVRational av_sub_q(AVRational b, AVRational c) av_const;
  113. /**
  114. * Invert a rational.
  115. * @param q value
  116. * @return 1 / q
  117. */
  118. static av_always_inline AVRational av_inv_q(AVRational q)
  119. {
  120. AVRational r = { q.den, q.num };
  121. return r;
  122. }
  123. /**
  124. * Convert a double precision floating point number to a rational.
  125. * inf is expressed as {1,0} or {-1,0} depending on the sign.
  126. *
  127. * @param d double to convert
  128. * @param max the maximum allowed numerator and denominator
  129. * @return (AVRational) d
  130. */
  131. AVRational av_d2q(double d, int max) av_const;
  132. /**
  133. * @return 1 if q1 is nearer to q than q2, -1 if q2 is nearer
  134. * than q1, 0 if they have the same distance.
  135. */
  136. int av_nearer_q(AVRational q, AVRational q1, AVRational q2);
  137. /**
  138. * Find the nearest value in q_list to q.
  139. * @param q_list an array of rationals terminated by {0, 0}
  140. * @return the index of the nearest value found in the array
  141. */
  142. int av_find_nearest_q_idx(AVRational q, const AVRational* q_list);
  143. /**
  144. * @}
  145. */
  146. #endif /* AVUTIL_RATIONAL_H */