diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2004-05-04 02:58:30 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2004-05-04 02:58:30 +0000 |
commit | 4c263142c5da89745fb956b3c5738f257c873532 (patch) | |
tree | 4a1f814ecd841f90eb1fd0da514598194cfe7ee1 /libavcodec/avcodec.h | |
parent | 29adde838c244b59ea03f81cb8625deac5bf3cd6 (diff) | |
download | ffmpeg-4c263142c5da89745fb956b3c5738f257c873532.tar.gz |
use AVInteger in av_rescale() so it can finally do 64*64/64 instead of just 64*32/32
Originally committed as revision 3106 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/avcodec.h')
-rw-r--r-- | libavcodec/avcodec.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 678ae5f7ae..6738293f50 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -17,7 +17,7 @@ extern "C" { #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 @@ int av_reduce(int *dst_nom, int *dst_den, int64_t nom, int64_t den, int64_t max) * 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); /** |