diff options
author | Diego Biurrun <diego@biurrun.de> | 2011-06-05 15:27:51 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2011-06-07 10:31:26 +0200 |
commit | e01bb264e78385367b716a55df713ae1a6750310 (patch) | |
tree | 078e3d4e240b4f79fb2a2034161684be810af407 /libavutil | |
parent | dc25d79f4980fb547908f4dd43732ebc0622610c (diff) | |
download | ffmpeg-e01bb264e78385367b716a55df713ae1a6750310.tar.gz |
inverse.c: Replace unnecessary intmath.h header by necessary stdint.h.
Diffstat (limited to 'libavutil')
-rw-r--r-- | libavutil/inverse.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavutil/inverse.c b/libavutil/inverse.c index bca61832ef..5a5c490e0a 100644 --- a/libavutil/inverse.c +++ b/libavutil/inverse.c @@ -19,7 +19,7 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ -#include "libavutil/intmath.h" +#include <stdint.h> /* a*inverse[b]>>32 == a/b for all 0<=a<=16909558 && 2<=b<=256 * for a>16909558, is an overestimate by less than 1 part in 1<<24 */ |