summaryrefslogtreecommitdiff
path: root/libavutil
diff options
context:
space:
mode:
authorChristophe Mutricy <xtophe@nxtelevision.com>2007-01-13 04:01:35 +0000
committerDiego Biurrun <diego@biurrun.de>2007-01-13 04:01:35 +0000
commitd0b456ba1e9078894e9540fef8cd7ccc17715168 (patch)
tree72eefc6e0a9cd148f1614761c2617a50692f5d40 /libavutil
parent2d0bcfb412a618e8130fbfea15df76eb0f7dac45 (diff)
Avoid "HAVE_CMOV not defined" warning.
patch by Christophe Mutricy, xtophe nxtelevision com Originally committed as revision 7443 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavutil')
-rw-r--r--libavutil/common.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavutil/common.h b/libavutil/common.h
index ca6147a802..4ca5353f5f 100644
--- a/libavutil/common.h
+++ b/libavutil/common.h
@@ -120,7 +120,7 @@ static inline int av_log2_16bit(unsigned int v)
/* median of 3 */
static inline int mid_pred(int a, int b, int c)
{
-#if HAVE_CMOV
+#ifdef HAVE_CMOV
int i=b;
asm volatile(
"cmp %2, %1 \n\t"