00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00028 #ifndef AVUTIL_RATIONAL_H
00029 #define AVUTIL_RATIONAL_H
00030
00031 #include <stdint.h>
00032 #include <limits.h>
00033 #include "attributes.h"
00034
00043 typedef struct AVRational{
00044 int num;
00045 int den;
00046 } AVRational;
00047
00055 static inline int av_cmp_q(AVRational a, AVRational b){
00056 const int64_t tmp= a.num * (int64_t)b.den - b.num * (int64_t)a.den;
00057
00058 if(tmp) return ((tmp ^ a.den ^ b.den)>>63)|1;
00059 else if(b.den && a.den) return 0;
00060 else if(a.num && b.num) return (a.num>>31) - (b.num>>31);
00061 else return INT_MIN;
00062 }
00063
00069 static inline double av_q2d(AVRational a){
00070 return a.num / (double) a.den;
00071 }
00072
00083 int av_reduce(int *dst_num, int *dst_den, int64_t num, int64_t den, int64_t max);
00084
00091 AVRational av_mul_q(AVRational b, AVRational c) av_const;
00092
00099 AVRational av_div_q(AVRational b, AVRational c) av_const;
00100
00107 AVRational av_add_q(AVRational b, AVRational c) av_const;
00108
00115 AVRational av_sub_q(AVRational b, AVRational c) av_const;
00116
00122 static av_always_inline AVRational av_inv_q(AVRational q)
00123 {
00124 AVRational r = { q.den, q.num };
00125 return r;
00126 }
00127
00136 AVRational av_d2q(double d, int max) av_const;
00137
00142 int av_nearer_q(AVRational q, AVRational q1, AVRational q2);
00143
00149 int av_find_nearest_q_idx(AVRational q, const AVRational* q_list);
00150
00155 #endif