shithub: libvpx

Download patch

ref: da359253d523051a5a5e96fea1faa8607e6472bc
parent: 2b55cfcfbde240beb22911af412ddd2a2c13024e
author: Yunqing Wang <yunqingwang@google.com>
date: Wed Nov 20 04:42:44 EST 2013

Fix stack pointer in sub-pixel filters

In commit "3d50da5397d20abc932d81453b26cde758293a40", the stack
pointer was modified while aligning the stack, and it needed to
be pop out at the end.

Change-Id: I39e4adc6b8aa3379854dd264d41aa6f0f15c7953

--- a/vp9/common/x86/vp9_subpixel_8t_ssse3.asm
+++ b/vp9/common/x86/vp9_subpixel_8t_ssse3.asm
@@ -839,6 +839,7 @@
     HORIZx4 0
 
     add rsp, 16 * 3
+    pop rsp
     ; begin epilog
     pop rdi
     pop rsi
@@ -952,6 +953,7 @@
     HORIZx4 1
 
     add rsp, 16 * 3
+    pop rsp
     ; begin epilog
     pop rdi
     pop rsi
--