summaryrefslogtreecommitdiffstats
path: root/postproc
diff options
context:
space:
mode:
authormichael <michael@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-05-05 11:08:59 +0000
committermichael <michael@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-05-05 11:08:59 +0000
commit7a4298edc05dcc54ef9c49e074cfd6ca84172bec (patch)
tree1b23cfab76ff59f1f9e9020fca6e64c5f6410222 /postproc
parentc778f10b0a3a2cb3bad4d480371d55ba9f02ca20 (diff)
downloadmpv-7a4298edc05dcc54ef9c49e074cfd6ca84172bec.tar.bz2
mpv-7a4298edc05dcc54ef9c49e074cfd6ca84172bec.tar.xz
3dnow temporal denoiser bugfix by RĂ©mi Guyomarch <rguyom@pobox.com>
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@5981 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'postproc')
-rw-r--r--postproc/postprocess_template.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/postproc/postprocess_template.c b/postproc/postprocess_template.c
index 234ba8e891..d2583fc941 100644
--- a/postproc/postprocess_template.c
+++ b/postproc/postprocess_template.c
@@ -2183,21 +2183,21 @@ L2_DIFF_CORE((%0, %%ecx), (%1, %%ecx))
"1: \n\t"
"leal (%%ebx, %2, 2), %%ecx \n\t" // 7*stride
"movq (%0), %%mm0 \n\t" // L0
- "pavgb (%1), %%mm0 \n\t" // L0
+ PAVGB((%1), %%mm0) // L0
"movq (%0, %2), %%mm1 \n\t" // L1
- "pavgb (%1, %2), %%mm1 \n\t" // L1
+ PAVGB((%1, %2), %%mm1) // L1
"movq (%0, %2, 2), %%mm2 \n\t" // L2
- "pavgb (%1, %2, 2), %%mm2 \n\t" // L2
+ PAVGB((%1, %2, 2), %%mm2) // L2
"movq (%0, %%eax), %%mm3 \n\t" // L3
- "pavgb (%1, %%eax), %%mm3 \n\t" // L3
+ PAVGB((%1, %%eax), %%mm3) // L3
"movq (%0, %2, 4), %%mm4 \n\t" // L4
- "pavgb (%1, %2, 4), %%mm4 \n\t" // L4
+ PAVGB((%1, %2, 4), %%mm4) // L4
"movq (%0, %%ebx), %%mm5 \n\t" // L5
- "pavgb (%1, %%ebx), %%mm5 \n\t" // L5
+ PAVGB((%1, %%ebx), %%mm5) // L5
"movq (%0, %%eax, 2), %%mm6 \n\t" // L6
- "pavgb (%1, %%eax, 2), %%mm6 \n\t" // L6
+ PAVGB((%1, %%eax, 2), %%mm6) // L6
"movq (%0, %%ecx), %%mm7 \n\t" // L7
- "pavgb (%1, %%ecx), %%mm7 \n\t" // L7
+ PAVGB((%1, %%ecx), %%mm7) // L7
"movq %%mm0, (%1) \n\t" // R0
"movq %%mm1, (%1, %2) \n\t" // R1
"movq %%mm2, (%1, %2, 2) \n\t" // R2