Skip to content

Commit ef9d285

Browse files
authored
Merge pull request #8 from awxkee/dev
bump libs, added CMYK handling
2 parents 20b7f84 + 16c1032 commit ef9d285

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

78 files changed

+938
-213
lines changed

Sources/Frameworks/libjxl.xcframework/Info.plist

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,16 @@
1010
<key>HeadersPath</key>
1111
<string>Headers</string>
1212
<key>LibraryIdentifier</key>
13-
<string>ios-arm64</string>
13+
<string>macos-arm64_x86_64</string>
1414
<key>LibraryPath</key>
1515
<string>libjxl.a</string>
1616
<key>SupportedArchitectures</key>
1717
<array>
1818
<string>arm64</string>
19+
<string>x86_64</string>
1920
</array>
2021
<key>SupportedPlatform</key>
21-
<string>ios</string>
22+
<string>macos</string>
2223
</dict>
2324
<dict>
2425
<key>BinaryPath</key>
@@ -45,16 +46,15 @@
4546
<key>HeadersPath</key>
4647
<string>Headers</string>
4748
<key>LibraryIdentifier</key>
48-
<string>macos-arm64_x86_64</string>
49+
<string>ios-arm64</string>
4950
<key>LibraryPath</key>
5051
<string>libjxl.a</string>
5152
<key>SupportedArchitectures</key>
5253
<array>
5354
<string>arm64</string>
54-
<string>x86_64</string>
5555
</array>
5656
<key>SupportedPlatform</key>
57-
<string>macos</string>
57+
<string>ios</string>
5858
</dict>
5959
</array>
6060
<key>CFBundlePackageType</key>

Sources/Frameworks/libjpegli.xcframework/ios-arm64/Headers/jpegli/common.h renamed to Sources/Frameworks/libjxl.xcframework/ios-arm64/Headers/jpegli/common.h

File renamed without changes.

Sources/Frameworks/libjpegli.xcframework/ios-arm64/Headers/jpegli/decode.h renamed to Sources/Frameworks/libjxl.xcframework/ios-arm64/Headers/jpegli/decode.h

File renamed without changes.

Sources/Frameworks/libjpegli.xcframework/ios-arm64/Headers/jpegli/encode.h renamed to Sources/Frameworks/libjxl.xcframework/ios-arm64/Headers/jpegli/encode.h

File renamed without changes.

Sources/Frameworks/libjpegli.xcframework/ios-arm64/Headers/jpegli/jconfig.h renamed to Sources/Frameworks/libjxl.xcframework/ios-arm64/Headers/jpegli/jconfig.h

File renamed without changes.

Sources/Frameworks/libjpegli.xcframework/ios-arm64/Headers/jpegli/jmorecfg.h renamed to Sources/Frameworks/libjxl.xcframework/ios-arm64/Headers/jpegli/jmorecfg.h

File renamed without changes.

Sources/Frameworks/libjpegli.xcframework/ios-arm64/Headers/jpegli/jpeglib.h renamed to Sources/Frameworks/libjxl.xcframework/ios-arm64/Headers/jpegli/jpeglib.h

File renamed without changes.

Sources/Frameworks/libjpegli.xcframework/ios-arm64/Headers/jpegli/types.h renamed to Sources/Frameworks/libjxl.xcframework/ios-arm64/Headers/jpegli/types.h

File renamed without changes.

Sources/Frameworks/libjxl.xcframework/ios-arm64/Headers/jxl/cms_interface.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
#include <stddef.h>
2424
#include <stdint.h>
2525

26-
#if defined(__cplusplus) || defined(c_plusplus)
26+
#ifdef __cplusplus
2727
extern "C" {
2828
#endif
2929

@@ -246,7 +246,7 @@ typedef struct {
246246
jpegxl_cms_destroy_func destroy;
247247
} JxlCmsInterface;
248248

249-
#if defined(__cplusplus) || defined(c_plusplus)
249+
#ifdef __cplusplus
250250
}
251251
#endif
252252

Sources/Frameworks/libjxl.xcframework/ios-arm64/Headers/jxl/codestream_header.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
#include <stddef.h>
2020
#include <stdint.h>
2121

22-
#if defined(__cplusplus) || defined(c_plusplus)
22+
#ifdef __cplusplus
2323
extern "C" {
2424
#endif
2525

@@ -424,7 +424,7 @@ typedef struct {
424424
JxlLayerInfo layer_info;
425425
} JxlFrameHeader;
426426

427-
#if defined(__cplusplus) || defined(c_plusplus)
427+
#ifdef __cplusplus
428428
}
429429
#endif
430430

0 commit comments

Comments
 (0)