diff options
author | Loren Merritt <lorenm@u.washington.edu> | 2007-05-11 03:29:06 +0000 |
---|---|---|
committer | Loren Merritt <lorenm@u.washington.edu> | 2007-05-11 03:29:06 +0000 |
commit | ba53071acbf98fb61542f8c183a7f0dcbed2b28c (patch) | |
tree | 5bf913847b742db6415d12892da4e7b7d7ba6747 | |
parent | 72946825fa6083a8074984036257ed09109d1910 (diff) | |
download | ffmpeg-ba53071acbf98fb61542f8c183a7f0dcbed2b28c.tar.gz |
10l, r8991 broke mmx1 sad
Originally committed as revision 8993 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/i386/motion_est_mmx.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/i386/motion_est_mmx.c b/libavcodec/i386/motion_est_mmx.c index b6998f67b5..e280b34d70 100644 --- a/libavcodec/i386/motion_est_mmx.c +++ b/libavcodec/i386/motion_est_mmx.c @@ -337,6 +337,7 @@ static int sad8_x2_ ## suf(void *v, uint8_t *blk2, uint8_t *blk1, int stride, in assert(h==8);\ asm volatile("pxor %%mm7, %%mm7 \n\t"\ "pxor %%mm6, %%mm6 \n\t"\ + "movq %0, %%mm5 \n\t"\ :: "m"(round_tab[1]) \ );\ \ |