3
* Copyright (c) 2003 Michael Niedermayer <michaelni@gmx.at>
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.
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.
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
24
* @author Michael Niedermayer <michaelni@gmx.at>
31
* Rational number num/den.
33
typedef struct AVRational{
34
int num; ///< numerator
35
int den; ///< denominator
39
* returns 0 if a==b, 1 if a>b and -1 if a<b.
41
static inline int av_cmp_q(AVRational a, AVRational b){
42
const int64_t tmp= a.num * (int64_t)b.den - b.num * (int64_t)a.den;
44
if(tmp) return (tmp>>63)|1;
49
* converts the given AVRational to a double.
51
static inline double av_q2d(AVRational a){
52
return a.num / (double) a.den;
57
* this is usefull for framerate calculations
58
* @param max the maximum allowed for dst_nom & dst_den
59
* @return 1 if exact, 0 otherwise
61
int av_reduce(int *dst_nom, int *dst_den, int64_t nom, int64_t den, int64_t max);
63
AVRational av_mul_q(AVRational b, AVRational c);
64
AVRational av_div_q(AVRational b, AVRational c);
65
AVRational av_add_q(AVRational b, AVRational c);
66
AVRational av_sub_q(AVRational b, AVRational c);
67
AVRational av_d2q(double d, int max);