Commit 71f8d704 authored by Michael Niedermayer's avatar Michael Niedermayer

dirac/x86: fix compile without yasm

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 4d3d3625
......@@ -1638,9 +1638,10 @@ void ff_ ## OPNAME2 ## _dirac_pixels32_ ## EXT(uint8_t *dst, const uint8_t *src[
DIRAC_PIXOP(put, put, mmx)
DIRAC_PIXOP(avg, avg, mmx)
#endif
DIRAC_PIXOP(avg, ff_avg, mmxext)
#if HAVE_YASM
DIRAC_PIXOP(avg, ff_avg, mmxext)
void ff_put_dirac_pixels16_sse2(uint8_t *dst, const uint8_t *src[5], int stride, int h)
{
if (h&3)
......
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