Commit a2566831 authored by diego's avatar diego

Avoid "HAVE_CMOV not defined" warning.

patch by Christophe Mutricy, xtophe nxtelevision com


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@7443 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent d804af0e
...@@ -120,7 +120,7 @@ static inline int av_log2_16bit(unsigned int v) ...@@ -120,7 +120,7 @@ static inline int av_log2_16bit(unsigned int v)
/* median of 3 */ /* median of 3 */
static inline int mid_pred(int a, int b, int c) static inline int mid_pred(int a, int b, int c)
{ {
#if HAVE_CMOV #ifdef HAVE_CMOV
int i=b; int i=b;
asm volatile( asm volatile(
"cmp %2, %1 \n\t" "cmp %2, %1 \n\t"
......
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