Commit 0617e073 authored by Fabrice Bellard's avatar Fabrice Bellard

log2 to av_log2 - added integer version define


Originally committed as revision 97 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 34763c15
#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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment