diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-01-30 06:47:09 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-01-30 06:47:09 +0100 |
commit | 71f8d7045638eb668f2395986de59821134fb1a1 (patch) | |
tree | 0a577e0022a44f0522f5fb3e8b68765829271fb5 | |
parent | 4d3d3625495915c45d63d1d72d332159d9d29baa (diff) | |
download | ffmpeg-71f8d7045638eb668f2395986de59821134fb1a1.tar.gz |
dirac/x86: fix compile without yasm
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavcodec/x86/dsputil_mmx.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/x86/dsputil_mmx.c b/libavcodec/x86/dsputil_mmx.c index d1e7bea42e..2e8300a788 100644 --- a/libavcodec/x86/dsputil_mmx.c +++ b/libavcodec/x86/dsputil_mmx.c @@ -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) |