diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2012-03-17 20:45:45 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-05-03 01:27:33 +0200 |
commit | e11fa0879a66d4e9c0258b6232a8f59121308d0c (patch) | |
tree | fb703614c6612bef27dd38e050454ab413740ecf | |
parent | 4702154464d53db0616b348be6332acd8ae4d6be (diff) | |
download | ffmpeg-e11fa0879a66d4e9c0258b6232a8f59121308d0c.tar.gz |
dsp: fix diff_bytes_mmx() with small width
Fixes Ticket1068
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
(cherry picked from commit 73089eccd3e48539555349b36d8aabbf1cea416e)
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavcodec/x86/dsputilenc_mmx.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/x86/dsputilenc_mmx.c b/libavcodec/x86/dsputilenc_mmx.c index f13c1219da..35d50bec9e 100644 --- a/libavcodec/x86/dsputilenc_mmx.c +++ b/libavcodec/x86/dsputilenc_mmx.c @@ -823,6 +823,7 @@ static int vsad16_mmx2(void *v, uint8_t * pix1, uint8_t * pix2, int line_size, i static void diff_bytes_mmx(uint8_t *dst, uint8_t *src1, uint8_t *src2, int w){ x86_reg i=0; + if(w>=16) __asm__ volatile( "1: \n\t" "movq (%2, %0), %%mm0 \n\t" |