[FFmpeg-cvslog] r24268 - trunk/libavcodec/x86/vp8dsp.asm
rbultje
subversion
Fri Jul 16 20:29:14 CEST 2010
Author: rbultje
Date: Fri Jul 16 20:29:14 2010
New Revision: 24268
Log:
Change return statement, the REP_RET is a mistake since the else case (x86-64,
sse2) doesn't actually loop, so REP_RET isn't necessary.
Modified:
trunk/libavcodec/x86/vp8dsp.asm
Modified: trunk/libavcodec/x86/vp8dsp.asm
==============================================================================
--- trunk/libavcodec/x86/vp8dsp.asm Fri Jul 16 18:50:56 2010 (r24267)
+++ trunk/libavcodec/x86/vp8dsp.asm Fri Jul 16 20:29:14 2010 (r24268)
@@ -1806,10 +1806,8 @@ cglobal vp8_%2_loop_filter16_inner_%1, 5
%ifndef m8 ; sse2 on x86-32 or mmx/mmxext
mov rsp, r4 ; restore stack pointer
- RET
-%else ; sse2 on x86-64
- REP_RET
%endif
+ RET
%endmacro
INIT_MMX
More information about the ffmpeg-cvslog
mailing list