Skip to content

Commit

Permalink
added proper effort and distance
Browse files Browse the repository at this point in the history
  • Loading branch information
awxkee committed Sep 27, 2023
1 parent ae98d42 commit 3392085
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion JxlCoder.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Pod::Spec.new do |s|
s.pod_target_xcconfig = {
'OTHER_CXXFLAGS' => '$(inherited) -std=c++20',
'HEADER_SEARCH_PATHS' => '$(inherited) "$(PODS_TARGET_SRCROOT)/Sources/Frameworks/libjxl.xcframework/ios-arm64/Headers"',
'OTHER_CPLUSPLUSFLAGS' => '$(inherited) -fmodules -fcxx-modules'
'OTHER_CPLUSPLUSFLAGS' => '$(inherited) -fmodules -fcxx-modules -std=c++20'
}
s.preserve_paths = "Sources/Frameworks/*.xcframework", "Sources/Frameworks/*.xcframework/**/Headers", "Sources/Frameworks/libjxl.xcframework/ios-arm64/Headers/jxl", "Sources/Frameworks/libjxl.xcframework/ios-arm64/Headers/jpegli"
s.libraries = 'c++'
Expand Down
1 change: 1 addition & 0 deletions Sources/jxlc/JxlInternalCoder.mm
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
#import <Accelerate/Accelerate.h>
#import "RgbRgbaConverter.hpp"
#import "RgbaScaler.h"
#import <algorithm>

static void JXLCGData16ProviderReleaseDataCallback(void *info, const void *data, size_t size) {
auto dataWrapper = static_cast<JXLDataWrapper<uint16_t>*>(info);
Expand Down

0 comments on commit 3392085

Please sign in to comment.