Skip to content

Commit 8c295cf

Browse files
author
Olivier Poitrey
committed
Update webp to upstream head
1 parent a0df1a0 commit 8c295cf

File tree

2 files changed

+17
-5
lines changed

2 files changed

+17
-5
lines changed

SDWebImage.xcodeproj/project.pbxproj

+16-4
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,10 @@
6767
5376131E155AD0D5005750A4 /* SDWebImagePrefetcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 53922D91148C56230056699D /* SDWebImagePrefetcher.h */; settings = {ATTRIBUTES = (Public, ); }; };
6868
5376131F155AD0D5005750A4 /* UIButton+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 53922D93148C56230056699D /* UIButton+WebCache.h */; settings = {ATTRIBUTES = (Public, ); }; };
6969
53761320155AD0D5005750A4 /* UIImageView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 53922D95148C56230056699D /* UIImageView+WebCache.h */; settings = {ATTRIBUTES = (Public, ); }; };
70+
53E481DD17C300F6003E8957 /* alpha_processing.c in Sources */ = {isa = PBXBuildFile; fileRef = 53E481DB17C300F6003E8957 /* alpha_processing.c */; };
71+
53E481DE17C300F6003E8957 /* alpha_processing.c in Sources */ = {isa = PBXBuildFile; fileRef = 53E481DB17C300F6003E8957 /* alpha_processing.c */; };
72+
53E481DF17C300F6003E8957 /* alpha_processing.h in Headers */ = {isa = PBXBuildFile; fileRef = 53E481DC17C300F6003E8957 /* alpha_processing.h */; };
73+
53E481E017C300F6003E8957 /* alpha_processing.h in Headers */ = {isa = PBXBuildFile; fileRef = 53E481DC17C300F6003E8957 /* alpha_processing.h */; };
7074
53EDFB8A17623F7C00698166 /* UIImage+MultiFormat.h in Headers */ = {isa = PBXBuildFile; fileRef = 53EDFB8817623F7C00698166 /* UIImage+MultiFormat.h */; };
7175
53EDFB8B17623F7C00698166 /* UIImage+MultiFormat.h in Headers */ = {isa = PBXBuildFile; fileRef = 53EDFB8817623F7C00698166 /* UIImage+MultiFormat.h */; };
7276
53EDFB8C17623F7C00698166 /* UIImage+MultiFormat.m in Sources */ = {isa = PBXBuildFile; fileRef = 53EDFB8917623F7C00698166 /* UIImage+MultiFormat.m */; };
@@ -196,6 +200,8 @@
196200
53922D94148C56230056699D /* UIButton+WebCache.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "UIButton+WebCache.m"; path = "SDWebImage/UIButton+WebCache.m"; sourceTree = SOURCE_ROOT; };
197201
53922D95148C56230056699D /* UIImageView+WebCache.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "UIImageView+WebCache.h"; path = "SDWebImage/UIImageView+WebCache.h"; sourceTree = SOURCE_ROOT; };
198202
53922D96148C56230056699D /* UIImageView+WebCache.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "UIImageView+WebCache.m"; path = "SDWebImage/UIImageView+WebCache.m"; sourceTree = SOURCE_ROOT; };
203+
53E481DB17C300F6003E8957 /* alpha_processing.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = alpha_processing.c; path = Vendors/libwebp/src/utils/alpha_processing.c; sourceTree = "<group>"; };
204+
53E481DC17C300F6003E8957 /* alpha_processing.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = alpha_processing.h; path = Vendors/libwebp/src/utils/alpha_processing.h; sourceTree = "<group>"; };
199205
53EDFB8817623F7C00698166 /* UIImage+MultiFormat.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+MultiFormat.h"; sourceTree = "<group>"; };
200206
53EDFB8917623F7C00698166 /* UIImage+MultiFormat.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+MultiFormat.m"; sourceTree = "<group>"; };
201207
53EDFB911762547C00698166 /* UIImage+WebP.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+WebP.h"; sourceTree = "<group>"; };
@@ -372,7 +378,7 @@
372378
isa = PBXGroup;
373379
children = (
374380
53EDFCB617625D1200698166 /* dsp */,
375-
53EDFCA317625C4600698166 /* util */,
381+
53EDFCA317625C4600698166 /* utils */,
376382
53EDFCA217625C3C00698166 /* dec */,
377383
);
378384
name = WebP;
@@ -397,9 +403,11 @@
397403
name = dec;
398404
sourceTree = "<group>";
399405
};
400-
53EDFCA317625C4600698166 /* util */ = {
406+
53EDFCA317625C4600698166 /* utils */ = {
401407
isa = PBXGroup;
402408
children = (
409+
53E481DB17C300F6003E8957 /* alpha_processing.c */,
410+
53E481DC17C300F6003E8957 /* alpha_processing.h */,
403411
53EDFCFF17625F7900698166 /* thread.h */,
404412
53EDFD0017625F7900698166 /* thread.c */,
405413
53EDFCF917625F5F00698166 /* filters.h */,
@@ -417,7 +425,7 @@
417425
53EDFCA417625C5B00698166 /* huffman.h */,
418426
53EDFCA517625C5B00698166 /* huffman.c */,
419427
);
420-
name = util;
428+
name = utils;
421429
sourceTree = "<group>";
422430
};
423431
53EDFCB617625D1200698166 /* dsp */ = {
@@ -458,6 +466,7 @@
458466
A18A6CC8172DC28500419892 /* UIImage+GIF.h in Headers */,
459467
A18A6CCE172DC33A00419892 /* NSData+GIF.h in Headers */,
460468
53EDFB8B17623F7C00698166 /* UIImage+MultiFormat.h in Headers */,
469+
53E481E017C300F6003E8957 /* alpha_processing.h in Headers */,
461470
53EDFB941762547D00698166 /* UIImage+WebP.h in Headers */,
462471
53EDFC9317625BE300698166 /* webpi.h in Headers */,
463472
53EDFC9B17625C1100698166 /* vp8li.h in Headers */,
@@ -503,6 +512,7 @@
503512
53EDFCC517625DB200698166 /* bit_reader.h in Headers */,
504513
53EDFCCB17625DD700698166 /* color_cache.h in Headers */,
505514
53EDFCD117625DFA00698166 /* lossless.h in Headers */,
515+
53E481DF17C300F6003E8957 /* alpha_processing.h in Headers */,
506516
53EDFCE317625EB100698166 /* yuv.h in Headers */,
507517
53EDFCEF17625F1D00698166 /* rescaler.h in Headers */,
508518
53EDFCF517625F4100698166 /* utils.h in Headers */,
@@ -638,6 +648,7 @@
638648
53EDFCC217625D8400698166 /* cpu.c in Sources */,
639649
53EDFCC817625DB200698166 /* bit_reader.c in Sources */,
640650
53EDFCCE17625DD700698166 /* color_cache.c in Sources */,
651+
53E481DE17C300F6003E8957 /* alpha_processing.c in Sources */,
641652
53EDFCD417625DFA00698166 /* lossless.c in Sources */,
642653
53EDFCD717625E1A00698166 /* tree.c in Sources */,
643654
53EDFCDA17625E3000698166 /* quant.c in Sources */,
@@ -682,6 +693,7 @@
682693
53EDFCC117625D8400698166 /* cpu.c in Sources */,
683694
53EDFCC717625DB200698166 /* bit_reader.c in Sources */,
684695
53EDFCCD17625DD700698166 /* color_cache.c in Sources */,
696+
53E481DD17C300F6003E8957 /* alpha_processing.c in Sources */,
685697
53EDFCD317625DFA00698166 /* lossless.c in Sources */,
686698
53EDFCD617625E1A00698166 /* tree.c in Sources */,
687699
53EDFCD917625E3000698166 /* quant.c in Sources */,
@@ -806,7 +818,7 @@
806818
GCC_OPTIMIZATION_LEVEL = 0;
807819
GCC_PREPROCESSOR_DEFINITIONS = (
808820
"DEBUG=1",
809-
"SD_WEBP=1",
821+
"SD_WEBP=1",
810822
"$(inherited)",
811823
);
812824
GCC_SYMBOLS_PRIVATE_EXTERN = NO;

Vendors/libwebp

Submodule libwebp updated from c2113ad to b25a6fb

0 commit comments

Comments
 (0)