dsputil_mmx: ff_put_dirac_pixels depend now on yasm.

Fix compile failure without yasm

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Michael Niedermayer 2012-11-26 13:59:41 +01:00
parent 76f60788e7
commit 86270236d5

View File

@ -2044,6 +2044,7 @@ DIRAC_PIXOP(put, mmx)
DIRAC_PIXOP(avg, mmx)
DIRAC_PIXOP(avg, mmxext)
#if HAVE_YASM
void ff_put_dirac_pixels16_sse2(uint8_t *dst, const uint8_t *src[5], int stride, int h)
{
ff_put_pixels16_sse2(dst, src[0], stride, h);
@ -2063,6 +2064,7 @@ void ff_avg_dirac_pixels32_sse2(uint8_t *dst, const uint8_t *src[5], int stride,
ff_avg_pixels16_sse2(dst+16, src[0]+16, stride, h);
}
#endif
#endif
/* XXX: Those functions should be suppressed ASAP when all IDCTs are
* converted. */