Commit 219a6fb6 authored by Michael Niedermayer's avatar Michael Niedermayer

dsp: fix diff_bytes_mmx() with small width

Fixes Ticket1068
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 69174fad
......@@ -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, const uint8_t *src1, const uint8_t *src2, int w){
x86_reg i=0;
if(w>=16)
__asm__ volatile(
"1: \n\t"
"movq (%2, %0), %%mm0 \n\t"
......
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