Commit 599a3d29 authored by glantau's avatar glantau

log2 to av_log2 - added integer version define


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@97 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 87d25d2c
#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