shithub: openh264

Download patch

ref: e39ce95e0f9aca06a80b1569d015141ba2fe4e14
parent: 868a3937870bb8dbed558cff22df5187732fd687
parent: d61b128b469ae7c9efb321b9ba051fe60536cb48
author: guangwei <GuangweiWang@users.noreply.github.com>
date: Tue Dec 19 03:54:07 EST 2017

Merge pull request #2877 from evivrus510/fix-clang-compiler-error

Fix Clang compiler error

--- a/codec/common/arm/arm_arch_common_macro.S
+++ b/codec/common/arm/arm_arch_common_macro.S
@@ -60,13 +60,17 @@
 .arm
 .global \funcName
 .type \funcName, %function
+#ifndef __clang__
 .func \funcName
+#endif
 \funcName:
 .endm
 
 .macro WELS_ASM_FUNC_END
 mov pc, lr
+#ifndef __clang__
 .endfunc
+#endif
 .endm
 #endif