Browse Source

Fix obvious bug in assignment. Somehow, the test vectors don't test this...

Originally committed as revision 24489 to svn://svn.ffmpeg.org/ffmpeg/trunk
Ronald S. Bultje 14 years ago
parent
commit
6de5b7c6b8
1 changed files with 1 additions and 1 deletions
  1. 1 1
      libavcodec/x86/vp8dsp.asm

+ 1 - 1
libavcodec/x86/vp8dsp.asm

@@ -2679,7 +2679,7 @@ cglobal vp8_%2_loop_filter16y_mbedge_%1, 5, %3, %5
     lea        dst8_reg, [dst8_reg+mstride_reg+4]
     WRITE_8W         m5, m5, dst2_reg, dst_reg,  mstride_reg, stride_reg, %2
 %ifidn %2, sse4
-    lea         dst_reg, [dst8_reg+ stride_reg]
+    lea        dst2_reg, [dst8_reg+ stride_reg]
 %endif
     WRITE_8W         m6, m6, dst2_reg, dst8_reg, mstride_reg, stride_reg, %2
 %endif