shithub: openh264

Download patch

ref: 3d076fe1f876eb7bca112b9500d6183f5836f4be
parent: 8182e31355fcf8f3b73287f44d3d8110b303cc3c
author: Martin Storsjö <[email protected]>
date: Tue Mar 25 06:59:14 EDT 2014

Readd a missed prototype for the WelsProcessingSampleSad8x8_neon function

The common WelsSampleSad8x8_neon function has different alignment
requirements than WelsProcessingSampleSad8x8_neon - until it has
been sorted out that the common version can be used in the processing
lib, the separate version for processing is used.

This fixes building with neon optimizations enabled.

--- a/codec/processing/src/common/common.h
+++ b/codec/processing/src/common/common.h
@@ -63,6 +63,11 @@
 GetIntraPred     WelsI16x16LumaPredV_c;
 GetIntraPred     WelsI16x16LumaPredH_c;
 
+#ifdef HAVE_NEON
+WELSVP_EXTERN_C_BEGIN
+int32_t WelsProcessingSampleSad8x8_neon (uint8_t*, int32_t, uint8_t*, int32_t);
+WELSVP_EXTERN_C_END
+#endif
 
 WELSVP_NAMESPACE_END