diff options
author | Ronald S. Bultje <rsbultje@gmail.com> | 2012-07-22 13:55:58 -0700 |
---|---|---|
committer | Ronald S. Bultje <rsbultje@gmail.com> | 2012-07-22 19:46:47 -0700 |
commit | 3b175384bb6491ecd44761e5282ae4c79567db57 (patch) | |
tree | 31d75f98eb144f18ffc5aa72560a55c59a8f1300 /libswscale | |
parent | 3124886554f202edeb0578bf664e576474a5d40f (diff) | |
download | ffmpeg-3b175384bb6491ecd44761e5282ae4c79567db57.tar.gz |
swscale: add missing HAVE_INLINE_ASM check.
The function called in this block is under HAVE_INLINE_ASM itself also.
Diffstat (limited to 'libswscale')
-rw-r--r-- | libswscale/swscale.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libswscale/swscale.c b/libswscale/swscale.c index 7ae5af37a8..5cfa7f237d 100644 --- a/libswscale/swscale.c +++ b/libswscale/swscale.c @@ -518,7 +518,7 @@ static int swScale(SwsContext *c, const uint8_t *src[], if (!enough_lines) break; // we can't output a dstY line so let's try with the next slice -#if HAVE_MMX +#if HAVE_MMX && HAVE_INLINE_ASM updateMMXDitherTables(c, dstY, lumBufIndex, chrBufIndex, lastInLumBuf, lastInChrBuf); #endif |