# HG changeset patch # User michael # Date 1083639510 0 # Node ID b737b5e96ee0dd966495ca853ef4338e7b371b02 # Parent 7523553ca85fcb004e67bbfb0f9240965f87fac2 use AVInteger in av_rescale() so it can finally do 64*64/64 instead of just 64*32/32 diff -r 7523553ca85f -r b737b5e96ee0 avcodec.h --- a/avcodec.h Tue May 04 02:51:18 2004 +0000 +++ b/avcodec.h Tue May 04 02:58:30 2004 +0000 @@ -17,7 +17,7 @@ #define FFMPEG_VERSION_INT 0x000408 #define FFMPEG_VERSION "0.4.8" -#define LIBAVCODEC_BUILD 4711 +#define LIBAVCODEC_BUILD 4712 #define LIBAVCODEC_VERSION_INT FFMPEG_VERSION_INT #define LIBAVCODEC_VERSION FFMPEG_VERSION @@ -1986,7 +1986,7 @@ * rescale a 64bit integer. * a simple a*b/c isnt possible as it can overflow */ -int64_t av_rescale(int64_t a, int b, int c); +int64_t av_rescale(int64_t a, int64_t b, int64_t c); /** diff -r 7523553ca85f -r b737b5e96ee0 utils.c --- a/utils.c Tue May 04 02:51:18 2004 +0000 +++ b/utils.c Tue May 04 02:58:30 2004 +0000 @@ -27,7 +27,9 @@ #include "avcodec.h" #include "dsputil.h" #include "mpegvideo.h" +#include "integer.h" #include +#include static void avcodec_default_free_buffers(AVCodecContext *s); @@ -816,23 +818,25 @@ return exact; } -int64_t av_rescale(int64_t a, int b, int c){ - uint64_t h, l; +int64_t av_rescale(int64_t a, int64_t b, int64_t c){ + AVInteger ai, ci; assert(c > 0); assert(b >=0); if(a<0) return -av_rescale(-a, b, c); - h= a>>32; - if(h==0) return a*b/c; + if(b<=INT_MAX && c<=INT_MAX){ + if(a<=INT_MAX) + return (a * b + c/2)/c; + else + return a/c*b + (a%c*b + c/2)/c; + } - l= a&0xFFFFFFFF; - l *= b; - h *= b; - - l += (h%c)<<32; - - return ((h/c)<<32) + l/c; + ai= av_mul_i(av_int2i(a), av_int2i(b)); + ci= av_int2i(c); + ai= av_add_i(ai, av_shr_i(ci,1)); + + return av_i2int(av_div_i(ai, ci)); } /* av_log API */