Toggle navigation
Toggle navigation
This project
Loading...
Sign in
ios
/
yh_sdwebimage
·
Commits
Go to a project
GitLab
Go to group
Project
Activity
Files
Commits
Pipelines
0
Builds
0
Graphs
Milestones
Issues
0
Merge Requests
0
Members
Labels
Wiki
Forks
Network
Create a new issue
Download as
Plain Diff
Browse Files
Authored by
Olivier Poitrey
2013-06-12 07:32:02 -0700
Commit
9a1f072e5e3b9f7ee84d63a1dd05cd990b448f74
2 parents
5ecb8d56
10a0f218
Merge pull request #418 from dalexsoto/master
Fix for #416
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
0 deletions
SDWebImage/UIImage+WebP.h
SDWebImage/UIImage+WebP.m
SDWebImage/UIImage+WebP.h
View file @
9a1f072
...
...
@@ -9,6 +9,11 @@
#ifdef SD_WEBP
#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
)
+
(
UIImage
*
)
sd_imageWithWebPData
:
(
NSData
*
)
data
;
...
...
SDWebImage/UIImage+WebP.m
View file @
9a1f072
...
...
@@ -61,4 +61,9 @@ static void FreeImageData(void *info, const void *data, size_t size)
}
@end
// Functions to resolve some undefined symbols when using WebP and force_load flag
void
WebPInitPremultiplyNEON
(
void
)
{}
void
WebPInitUpsamplersNEON
(
void
)
{}
void
VP8DspInitNEON
(
void
)
{}
#endif
...
...
Please
register
or
login
to post a comment