diff options
author | Christophe Mutricy <xtophe@nxtelevision.com> | 2007-01-13 04:01:35 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2007-01-13 04:01:35 +0000 |
commit | d0b456ba1e9078894e9540fef8cd7ccc17715168 (patch) | |
tree | 72eefc6e0a9cd148f1614761c2617a50692f5d40 /libavutil/common.h | |
parent | 2d0bcfb412a618e8130fbfea15df76eb0f7dac45 (diff) | |
download | ffmpeg-d0b456ba1e9078894e9540fef8cd7ccc17715168.tar.gz |
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/common.h')
-rw-r--r-- | libavutil/common.h | 2 |
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" |