[FFmpeg-cvslog] dsputil: x86: Correct the number of registers used in put_no_rnd_pixels16_l2

Daniel Kang git at videolan.org
Sun Jan 27 16:34:44 CET 2013


ffmpeg | branch: master | Daniel Kang <daniel.d.kang at gmail.com> | Sun Jan 27 02:22:54 2013 -0500| [96753bd00d6d4046db6818c0aadc21bf2a11d77b] | committer: Luca Barbato

dsputil: x86: Correct the number of registers used in put_no_rnd_pixels16_l2

put_no_rnd_pixels16_l2 allocated 5 instead of 6 registers.

Signed-off-by: Luca Barbato <lu_zero at gentoo.org>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=96753bd00d6d4046db6818c0aadc21bf2a11d77b
---

 libavcodec/x86/mpeg4qpel.asm |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavcodec/x86/mpeg4qpel.asm b/libavcodec/x86/mpeg4qpel.asm
index 39c9fc8..a5525d2 100644
--- a/libavcodec/x86/mpeg4qpel.asm
+++ b/libavcodec/x86/mpeg4qpel.asm
@@ -99,7 +99,7 @@ PUT_NO_RND_PIXELS8_L2
 
 ; put_no_rnd_pixels16_l2(uint8_t *dst, uint8_t *src1, uint8_t *src2, int dstStride, int src1Stride, int h)
 %macro PUT_NO_RND_PIXELS16_l2 0
-cglobal put_no_rnd_pixels16_l2, 5,5
+cglobal put_no_rnd_pixels16_l2, 6,6
     movsxdifnidn r3, r3
     movsxdifnidn r4, r4d
     pcmpeqb      m6, m6



More information about the ffmpeg-cvslog mailing list