Commit 0913a92a authored by Vitor Sessak's avatar Vitor Sessak

Fix compilation with --disable-yasm. 10l to me.

Originally committed as revision 24617 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 1de4cfe6
......@@ -38,7 +38,7 @@
#include "libavutil/pixdesc.h"
#include "libavcore/imgutils.h"
#if HAVE_MMX
#if HAVE_MMX && HAVE_YASM
#include "x86/dsputil_mmx.h"
#endif
......@@ -54,7 +54,7 @@
#define FF_PIXEL_PACKED 1 /**< only one components containing all the channels */
#define FF_PIXEL_PALETTE 2 /**< one components containing indexes for a palette */
#if HAVE_MMX
#if HAVE_MMX && HAVE_YASM
#define deinterlace_line_inplace ff_deinterlace_line_inplace_mmx
#define deinterlace_line ff_deinterlace_line_mmx
#else
......@@ -1126,7 +1126,7 @@ int img_get_alpha_info(const AVPicture *src,
return ret;
}
#if !HAVE_MMX
#if !(HAVE_MMX && HAVE_YASM)
/* filter parameters: [-1 4 2 4 -1] // 8 */
static void deinterlace_line_c(uint8_t *dst,
const uint8_t *lum_m4, const uint8_t *lum_m3,
......
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