// Fix for issue #416 Undefined symbols for architecture armv7 since WebP introduction 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
This commit is contained in:
parent
5ecb8d56af
commit
63805ef590
|
@ -9,6 +9,11 @@
|
||||||
#ifdef SD_WEBP
|
#ifdef SD_WEBP
|
||||||
#import <UIKit/UIKit.h>
|
#import <UIKit/UIKit.h>
|
||||||
|
|
||||||
|
// Fix for issue #416 Undefined symbols for architecture armv7 since WebP introduction when deploying to device
|
||||||
|
void WebPInitPremultiplyNEON(void);
|
||||||
|
void WebPInitUpsamplersNEON(void);
|
||||||
|
void VP8DspInitNEON(void);
|
||||||
|
|
||||||
@interface UIImage (WebP)
|
@interface UIImage (WebP)
|
||||||
|
|
||||||
+ (UIImage *)sd_imageWithWebPData:(NSData *)data;
|
+ (UIImage *)sd_imageWithWebPData:(NSData *)data;
|
||||||
|
|
Loading…
Reference in New Issue