shithub: openh264

Download patch

ref: f1502c26e3b81da17655dd4209e1851061db1849
parent: 8ba79262bf754bbd935584fa11096297b3a9695c
author: Martin Storsjö <[email protected]>
date: Wed Mar 5 06:46:19 EST 2014

Don't use WELS_ASM_FUNC_END in the middle of a function

WELS_ASM_FUNC_END declares the end of the function, and needs
to be paired with WELS_ASM_FUNC_BEGIN.

--- a/codec/encoder/core/arm/memory_neon.S
+++ b/codec/encoder/core/arm/memory_neon.S
@@ -48,12 +48,12 @@
     vst1.64 {q0}, [r0]!
     vst1.64 {q0}, [r0]!
     bne mem_zero_loop
-WELS_ASM_FUNC_END
+    bx lr
 
 mem_zero_32_neon_start:
     vst1.64 {q0}, [r0]!
     vst1.64 {q0}, [r0]!
-WELS_ASM_FUNC_END
+    bx lr
 
 mem_zero_24_neon_start:
     vst1.64 {q0}, [r0]!