diff options
author | Fabrice Bellard <fabrice@bellard.org> | 2001-08-15 13:09:28 +0000 |
---|---|---|
committer | Fabrice Bellard <fabrice@bellard.org> | 2001-08-15 13:09:28 +0000 |
commit | 0617e073916e9f52b37094b533e514aa6b1e1088 (patch) | |
tree | 80bf042253a93aa3d3551716377e58fc31d689fc /libavcodec | |
parent | 34763c151fd387f2977f850eac11762bf965467f (diff) | |
download | ffmpeg-0617e073916e9f52b37094b533e514aa6b1e1088.tar.gz |
log2 to av_log2 - added integer version define
Originally committed as revision 97 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/common.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libavcodec/common.h b/libavcodec/common.h index 57ce5035b7..920c4ebc2c 100644 --- a/libavcodec/common.h +++ b/libavcodec/common.h @@ -1,7 +1,8 @@ #ifndef COMMON_H #define COMMON_H -#define FFMPEG_VERSION "0.4.5" +#define FFMPEG_VERSION_INT 0x000405 +#define FFMPEG_VERSION "0.4.5" #ifdef WIN32 #define CONFIG_WIN32 @@ -297,7 +298,7 @@ void print_stats(void); /* misc math functions */ -extern inline int log2(unsigned int v) +extern inline int av_log2(unsigned int v) { int n; |