Commit 55cb1ae6 authored by Michael Niedermayer's avatar Michael Niedermayer

gcc3 bug workaround

Originally committed as revision 727 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 93768378
......@@ -165,7 +165,7 @@ inline void dprintf(const char* fmt,...) {}
#define MAX(a,b) ((a) > (b) ? (a) : (b))
#define MIN(a,b) ((a) > (b) ? (b) : (a))
#ifdef ARCH_X86
#if defined ARCH_X86 && (__GNUC__ != 3 || __GNUC_MINOR__ > 1)
// inverse for shift optimization (gcc should do that ...)
#define INV32(a) (-a)
#else
......
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