diff avcodec.h @ 2002:b737b5e96ee0 libavcodec

use AVInteger in av_rescale() so it can finally do 64*64/64 instead of just 64*32/32
author michael
date Tue, 04 May 2004 02:58:30 +0000
parents 7bd3932bc918
children ec6bfd8d92fc
line wrap: on
line diff
--- 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);
 
 
 /**