Authored by Alex Soto

// Fix for issue #416 Undefined symbols for architecture armv7 since WebP introd…

…uction when deploying to device

Added Functions to resolve some undefined symbols when using WebP and force_load flag

void WebPInitPremultiplyNEON(void);
void WebPInitUpsamplersNEON(void);
void VP8DspInitNEON(void);

Changes under MIT License
@@ -9,6 +9,11 @@ @@ -9,6 +9,11 @@
9 #ifdef SD_WEBP 9 #ifdef SD_WEBP
10 #import <UIKit/UIKit.h> 10 #import <UIKit/UIKit.h>
11 11
  12 +// Fix for issue #416 Undefined symbols for architecture armv7 since WebP introduction when deploying to device
  13 +void WebPInitPremultiplyNEON(void);
  14 +void WebPInitUpsamplersNEON(void);
  15 +void VP8DspInitNEON(void);
  16 +
12 @interface UIImage (WebP) 17 @interface UIImage (WebP)
13 18
14 + (UIImage *)sd_imageWithWebPData:(NSData *)data; 19 + (UIImage *)sd_imageWithWebPData:(NSData *)data;