rational.h 3.68 KB
Newer Older
Michael Niedermayer's avatar
Michael Niedermayer committed
1
/*
2
 * rational numbers
Michael Niedermayer's avatar
Michael Niedermayer committed
3 4
 * Copyright (c) 2003 Michael Niedermayer <michaelni@gmx.at>
 *
5 6 7
 * This file is part of FFmpeg.
 *
 * FFmpeg is free software; you can redistribute it and/or
Michael Niedermayer's avatar
Michael Niedermayer committed
8 9
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
10
 * version 2.1 of the License, or (at your option) any later version.
Michael Niedermayer's avatar
Michael Niedermayer committed
11
 *
12
 * FFmpeg is distributed in the hope that it will be useful,
Michael Niedermayer's avatar
Michael Niedermayer committed
13 14 15 16 17
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * 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
Michael Niedermayer's avatar
Michael Niedermayer committed
20
 */
21

Michael Niedermayer's avatar
Michael Niedermayer committed
22
/**
23
 * @file
24
 * rational numbers
Michael Niedermayer's avatar
Michael Niedermayer committed
25 26 27
 * @author Michael Niedermayer <michaelni@gmx.at>
 */

28 29
#ifndef AVUTIL_RATIONAL_H
#define AVUTIL_RATIONAL_H
Michael Niedermayer's avatar
Michael Niedermayer committed
30

31
#include <stdint.h>
32
#include <limits.h>
33
#include "attributes.h"
34

35 36 37 38 39
/**
 * @addtogroup lavu_math
 * @{
 */

Michael Niedermayer's avatar
Michael Niedermayer committed
40
/**
41
 * rational number numerator/denominator
Michael Niedermayer's avatar
Michael Niedermayer committed
42
 */
Michael Niedermayer's avatar
Michael Niedermayer committed
43
typedef struct AVRational{
Michael Niedermayer's avatar
Michael Niedermayer committed
44 45
    int num; ///< numerator
    int den; ///< denominator
Michael Niedermayer's avatar
Michael Niedermayer committed
46 47
} AVRational;

Michael Niedermayer's avatar
Michael Niedermayer committed
48
/**
49
 * Compare two rationals.
50 51
 * @param a first rational
 * @param b second rational
52 53
 * @return 0 if a==b, 1 if a>b, -1 if a<b, and INT_MIN if one of the
 * values is of the form 0/0
Michael Niedermayer's avatar
Michael Niedermayer committed
54
 */
Michael Niedermayer's avatar
Michael Niedermayer committed
55 56 57
static inline int av_cmp_q(AVRational a, AVRational b){
    const int64_t tmp= a.num * (int64_t)b.den - b.num * (int64_t)a.den;

58
    if(tmp) return ((tmp ^ a.den ^ b.den)>>63)|1;
59 60 61
    else if(b.den && a.den) return 0;
    else if(a.num && b.num) return (a.num>>31) - (b.num>>31);
    else                    return INT_MIN;
Michael Niedermayer's avatar
Michael Niedermayer committed
62 63
}

Michael Niedermayer's avatar
Michael Niedermayer committed
64
/**
65
 * Convert rational to double.
66 67
 * @param a rational to convert
 * @return (double) a
Michael Niedermayer's avatar
Michael Niedermayer committed
68
 */
Michael Niedermayer's avatar
Michael Niedermayer committed
69 70 71 72
static inline double av_q2d(AVRational a){
    return a.num / (double) a.den;
}

73
/**
74
 * Reduce a fraction.
75
 * This is useful for framerate calculations.
76
 * @param dst_num destination numerator
77
 * @param dst_den destination denominator
78
 * @param num source numerator
79
 * @param den source denominator
80
 * @param max the maximum allowed for dst_num & dst_den
81 82
 * @return 1 if exact, 0 otherwise
 */
83
int av_reduce(int *dst_num, int *dst_den, int64_t num, int64_t den, int64_t max);
84

85
/**
86
 * Multiply two rationals.
87 88 89
 * @param b first rational
 * @param c second rational
 * @return b*c
90
 */
91
AVRational av_mul_q(AVRational b, AVRational c) av_const;
92 93

/**
94
 * Divide one rational by another.
95 96 97
 * @param b first rational
 * @param c second rational
 * @return b/c
98
 */
99
AVRational av_div_q(AVRational b, AVRational c) av_const;
100 101

/**
102
 * Add two rationals.
103 104 105
 * @param b first rational
 * @param c second rational
 * @return b+c
106
 */
107
AVRational av_add_q(AVRational b, AVRational c) av_const;
108 109

/**
110
 * Subtract one rational from another.
111 112 113
 * @param b first rational
 * @param c second rational
 * @return b-c
114
 */
115
AVRational av_sub_q(AVRational b, AVRational c) av_const;
116 117

/**
118
 * Convert a double precision floating point number to a rational.
119 120
 * inf is expressed as {1,0} or {-1,0} depending on the sign.
 *
121 122
 * @param d double to convert
 * @param max the maximum allowed numerator and denominator
123
 * @return (AVRational) d
124
 */
125
AVRational av_d2q(double d, int max) av_const;
Michael Niedermayer's avatar
Michael Niedermayer committed
126

127
/**
128 129
 * @return 1 if q1 is nearer to q than q2, -1 if q2 is nearer
 * than q1, 0 if they have the same distance.
130 131 132 133
 */
int av_nearer_q(AVRational q, AVRational q1, AVRational q2);

/**
134
 * Find the nearest value in q_list to q.
135 136 137 138 139
 * @param q_list an array of rationals terminated by {0, 0}
 * @return the index of the nearest value found in the array
 */
int av_find_nearest_q_idx(AVRational q, const AVRational* q_list);

140 141 142 143
/**
 * @}
 */

144
#endif /* AVUTIL_RATIONAL_H */