├── .github └── FUNDING.yml ├── .gitignore ├── .swiftpm └── xcode │ ├── package.xcworkspace │ └── contents.xcworkspacedata │ └── xcuserdata │ └── radzivonbartoshyk.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist ├── Gemfile ├── Gemfile.lock ├── Jxl Coder.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── swiftpm │ │ └── Package.resolved ├── xcshareddata │ └── xcschemes │ │ └── Jxl Coder.xcscheme └── xcuserdata │ └── radzivonbartoshyk.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ └── xcschememanagement.plist ├── Jxl Coder.xcworkspace ├── contents.xcworkspacedata └── xcshareddata │ ├── IDEWorkspaceChecks.plist │ └── swiftpm │ └── Package.resolved ├── Jxl Coder ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ └── test_1.imageset │ │ ├── Contents.json │ │ └── test_1.png ├── ContentView.swift ├── Jxl Coder-Bridging-Header.h ├── Jxl_CoderApp.swift ├── Preview Content │ └── Preview Assets.xcassets │ │ └── Contents.json └── Resources │ ├── first.jxl │ ├── pexels-cheng.jxl │ ├── pngtree.jxl │ └── second.jxl ├── JxlCoder.podspec ├── JxlNukePlugin └── JxlNukePlugin.swift ├── JxlSDWebImageCoder.podspec ├── JxlSDWebImageCoder └── JxlSDWebImageCoder.swift ├── LICENSE ├── Package.swift ├── Podfile ├── Podfile.lock ├── README.md └── Sources ├── Frameworks ├── libbrotlicommon.xcframework │ ├── Info.plist │ ├── ios-arm64 │ │ ├── Headers │ │ │ └── libbrotlicommon.h │ │ └── libbrotlicommon.a │ ├── ios-arm64_x86_64-simulator │ │ ├── Headers │ │ │ └── libbrotlicommon.h │ │ └── libbrotlicommon.a │ └── macos-arm64_x86_64 │ │ ├── Headers │ │ └── libbrotlicommon.h │ │ └── libbrotlicommon.a ├── libbrotlidec.xcframework │ ├── Info.plist │ ├── ios-arm64 │ │ ├── Headers │ │ │ └── libbrotlidec.h │ │ └── libbrotlidec.a │ ├── ios-arm64_x86_64-simulator │ │ ├── Headers │ │ │ └── libbrotlidec.h │ │ └── libbrotlidec.a │ └── macos-arm64_x86_64 │ │ ├── Headers │ │ └── libbrotlidec.h │ │ └── libbrotlidec.a ├── libbrotlienc.xcframework │ ├── Info.plist │ ├── ios-arm64 │ │ ├── Headers │ │ │ └── libbrotlienc.h │ │ └── libbrotlienc.a │ ├── ios-arm64_x86_64-simulator │ │ ├── Headers │ │ │ └── libbrotlienc.h │ │ └── libbrotlienc.a │ └── macos-arm64_x86_64 │ │ ├── Headers │ │ └── libbrotlienc.h │ │ └── libbrotlienc.a ├── libhwy.xcframework │ ├── Info.plist │ ├── ios-arm64 │ │ ├── Headers │ │ │ ├── hwy │ │ │ │ ├── aligned_allocator.h │ │ │ │ ├── base.h │ │ │ │ ├── cache_control.h │ │ │ │ ├── detect_compiler_arch.h │ │ │ │ ├── detect_targets.h │ │ │ │ ├── foreach_target.h │ │ │ │ ├── highway.h │ │ │ │ ├── highway_export.h │ │ │ │ ├── ops │ │ │ │ │ ├── arm_neon-inl.h │ │ │ │ │ ├── arm_sve-inl.h │ │ │ │ │ ├── emu128-inl.h │ │ │ │ │ ├── generic_ops-inl.h │ │ │ │ │ ├── ppc_vsx-inl.h │ │ │ │ │ ├── rvv-inl.h │ │ │ │ │ ├── scalar-inl.h │ │ │ │ │ ├── set_macros-inl.h │ │ │ │ │ ├── shared-inl.h │ │ │ │ │ ├── tuple-inl.h │ │ │ │ │ ├── wasm_128-inl.h │ │ │ │ │ ├── wasm_256-inl.h │ │ │ │ │ ├── x86_128-inl.h │ │ │ │ │ ├── x86_256-inl.h │ │ │ │ │ └── x86_512-inl.h │ │ │ │ ├── per_target.h │ │ │ │ ├── print.h │ │ │ │ ├── robust_statistics.h │ │ │ │ ├── targets.h │ │ │ │ ├── timer-inl.h │ │ │ │ └── timer.h │ │ │ └── libhwy.h │ │ └── libhwy.a │ ├── ios-arm64_x86_64-simulator │ │ ├── Headers │ │ │ ├── hwy │ │ │ │ ├── aligned_allocator.h │ │ │ │ ├── base.h │ │ │ │ ├── cache_control.h │ │ │ │ ├── detect_compiler_arch.h │ │ │ │ ├── detect_targets.h │ │ │ │ ├── foreach_target.h │ │ │ │ ├── highway.h │ │ │ │ ├── highway_export.h │ │ │ │ ├── ops │ │ │ │ │ ├── arm_neon-inl.h │ │ │ │ │ ├── arm_sve-inl.h │ │ │ │ │ ├── emu128-inl.h │ │ │ │ │ ├── generic_ops-inl.h │ │ │ │ │ ├── ppc_vsx-inl.h │ │ │ │ │ ├── rvv-inl.h │ │ │ │ │ ├── scalar-inl.h │ │ │ │ │ ├── set_macros-inl.h │ │ │ │ │ ├── shared-inl.h │ │ │ │ │ ├── tuple-inl.h │ │ │ │ │ ├── wasm_128-inl.h │ │ │ │ │ ├── wasm_256-inl.h │ │ │ │ │ ├── x86_128-inl.h │ │ │ │ │ ├── x86_256-inl.h │ │ │ │ │ └── x86_512-inl.h │ │ │ │ ├── per_target.h │ │ │ │ ├── print.h │ │ │ │ ├── robust_statistics.h │ │ │ │ ├── targets.h │ │ │ │ ├── timer-inl.h │ │ │ │ └── timer.h │ │ │ └── libhwy.h │ │ └── libhwy.a │ └── macos-arm64_x86_64 │ │ ├── Headers │ │ ├── hwy │ │ │ ├── aligned_allocator.h │ │ │ ├── base.h │ │ │ ├── cache_control.h │ │ │ ├── detect_compiler_arch.h │ │ │ ├── detect_targets.h │ │ │ ├── foreach_target.h │ │ │ ├── highway.h │ │ │ ├── highway_export.h │ │ │ ├── ops │ │ │ │ ├── arm_neon-inl.h │ │ │ │ ├── arm_sve-inl.h │ │ │ │ ├── emu128-inl.h │ │ │ │ ├── generic_ops-inl.h │ │ │ │ ├── ppc_vsx-inl.h │ │ │ │ ├── rvv-inl.h │ │ │ │ ├── scalar-inl.h │ │ │ │ ├── set_macros-inl.h │ │ │ │ ├── shared-inl.h │ │ │ │ ├── tuple-inl.h │ │ │ │ ├── wasm_128-inl.h │ │ │ │ ├── wasm_256-inl.h │ │ │ │ ├── x86_128-inl.h │ │ │ │ ├── x86_256-inl.h │ │ │ │ └── x86_512-inl.h │ │ │ ├── per_target.h │ │ │ ├── print.h │ │ │ ├── robust_statistics.h │ │ │ ├── targets.h │ │ │ ├── timer-inl.h │ │ │ └── timer.h │ │ └── libhwy.h │ │ └── libhwy.a ├── libjpegli.xcframework │ ├── Info.plist │ ├── ios-arm64 │ │ ├── Headers │ │ │ └── jpegli │ │ │ │ ├── common.h │ │ │ │ ├── decode.h │ │ │ │ ├── encode.h │ │ │ │ ├── jconfig.h │ │ │ │ ├── jmorecfg.h │ │ │ │ ├── jpeglib.h │ │ │ │ └── types.h │ │ └── libjpegli.a │ ├── ios-arm64_x86_64-simulator │ │ ├── Headers │ │ │ └── jpegli │ │ │ │ ├── common.h │ │ │ │ ├── decode.h │ │ │ │ ├── encode.h │ │ │ │ ├── jconfig.h │ │ │ │ ├── jmorecfg.h │ │ │ │ ├── jpeglib.h │ │ │ │ └── types.h │ │ └── libjpegli.a │ └── macos-arm64_x86_64 │ │ ├── Headers │ │ └── jpegli │ │ │ ├── common.h │ │ │ ├── decode.h │ │ │ ├── encode.h │ │ │ ├── jconfig.h │ │ │ ├── jmorecfg.h │ │ │ ├── jpeglib.h │ │ │ └── types.h │ │ └── libjpegli.a ├── libjxl.xcframework │ ├── Info.plist │ ├── ios-arm64 │ │ ├── Headers │ │ │ └── jxl │ │ │ │ ├── cms.h │ │ │ │ ├── cms_interface.h │ │ │ │ ├── codestream_header.h │ │ │ │ ├── color_encoding.h │ │ │ │ ├── decode.h │ │ │ │ ├── decode_cxx.h │ │ │ │ ├── encode.h │ │ │ │ ├── encode_cxx.h │ │ │ │ ├── jxl_cms_export.h │ │ │ │ ├── jxl_export.h │ │ │ │ ├── jxl_threads_export.h │ │ │ │ ├── memory_manager.h │ │ │ │ ├── parallel_runner.h │ │ │ │ ├── resizable_parallel_runner.h │ │ │ │ ├── resizable_parallel_runner_cxx.h │ │ │ │ ├── stats.h │ │ │ │ ├── thread_parallel_runner.h │ │ │ │ ├── thread_parallel_runner_cxx.h │ │ │ │ ├── types.h │ │ │ │ └── version.h │ │ └── libjxl.a │ ├── ios-arm64_x86_64-simulator │ │ ├── Headers │ │ │ └── jxl │ │ │ │ ├── cms.h │ │ │ │ ├── cms_interface.h │ │ │ │ ├── codestream_header.h │ │ │ │ ├── color_encoding.h │ │ │ │ ├── decode.h │ │ │ │ ├── decode_cxx.h │ │ │ │ ├── encode.h │ │ │ │ ├── encode_cxx.h │ │ │ │ ├── jxl_cms_export.h │ │ │ │ ├── jxl_export.h │ │ │ │ ├── jxl_threads_export.h │ │ │ │ ├── memory_manager.h │ │ │ │ ├── parallel_runner.h │ │ │ │ ├── resizable_parallel_runner.h │ │ │ │ ├── resizable_parallel_runner_cxx.h │ │ │ │ ├── stats.h │ │ │ │ ├── thread_parallel_runner.h │ │ │ │ ├── thread_parallel_runner_cxx.h │ │ │ │ ├── types.h │ │ │ │ └── version.h │ │ └── libjxl.a │ └── macos-arm64_x86_64 │ │ ├── Headers │ │ └── jxl │ │ │ ├── cms.h │ │ │ ├── cms_interface.h │ │ │ ├── codestream_header.h │ │ │ ├── color_encoding.h │ │ │ ├── decode.h │ │ │ ├── decode_cxx.h │ │ │ ├── encode.h │ │ │ ├── encode_cxx.h │ │ │ ├── jxl_cms_export.h │ │ │ ├── jxl_export.h │ │ │ ├── jxl_threads_export.h │ │ │ ├── memory_manager.h │ │ │ ├── parallel_runner.h │ │ │ ├── resizable_parallel_runner.h │ │ │ ├── resizable_parallel_runner_cxx.h │ │ │ ├── stats.h │ │ │ ├── thread_parallel_runner.h │ │ │ ├── thread_parallel_runner_cxx.h │ │ │ ├── types.h │ │ │ └── version.h │ │ └── libjxl.a ├── libjxl_cms.xcframework │ ├── Info.plist │ ├── ios-arm64 │ │ ├── Headers │ │ │ └── libjxl_cms.h │ │ └── libjxl_cms.a │ ├── ios-arm64_x86_64-simulator │ │ ├── Headers │ │ │ └── libjxl_cms.h │ │ └── libjxl_cms.a │ └── macos-arm64_x86_64 │ │ ├── Headers │ │ └── libjxl_cms.h │ │ └── libjxl_cms.a ├── libjxl_threads.xcframework │ ├── Info.plist │ ├── ios-arm64 │ │ ├── Headers │ │ │ └── libjxl_threads_stub.h │ │ └── libjxl_threads.a │ ├── ios-arm64_x86_64-simulator │ │ ├── Headers │ │ │ └── libjxl_threads_stub.h │ │ └── libjxl_threads.a │ └── macos-arm64_x86_64 │ │ ├── Headers │ │ └── libjxl_threads_stub.h │ │ └── libjxl_threads.a └── libskcms.xcframework │ ├── Info.plist │ ├── ios-arm64 │ ├── Headers │ │ └── libskcms.h │ └── libskcms.a │ ├── ios-arm64_x86_64-simulator │ ├── Headers │ │ └── libskcms.h │ └── libskcms.a │ └── macos-arm64_x86_64 │ ├── Headers │ └── libskcms.h │ └── libskcms.a ├── JxlCoder ├── JXLAnimatedDecoder.swift ├── JXLAnimatedEncoder.swift ├── JXLCoder.swift ├── JXLSupport.swift └── JpegLiEncoder.swift ├── Module ├── Info.plist ├── JXLCoder.h └── module.modulemap └── jxlc ├── CJpegXLAnimatedDecoder.h ├── CJpegXLAnimatedDecoder.mm ├── CJpegXLAnimatedEncoder.h ├── CJpegXLAnimatedEncoder.mm ├── JPEGLIEncoder.cpp ├── JPEGLiEncoder.hpp ├── JXLSystemImage.hpp ├── JXLSystemImage.mm ├── JxlAnimatedDecoder.cpp ├── JxlAnimatedDecoder.hpp ├── JxlAnimatedEncoder.cpp ├── JxlAnimatedEncoder.hpp ├── JxlConstruction.h ├── JxlConstruction.mm ├── JxlDefinitions.h ├── JxlInternalCoder.h ├── JxlInternalCoder.mm ├── JxlJpegInverse.hpp ├── JxlJpegLiEncoder.h ├── JxlJpegLiEncoder.mm ├── JxlTranscode.hpp ├── JxlWorker.cpp ├── JxlWorker.hpp ├── RgbRgbaConverter.hpp ├── RgbRgbaConverter.mm ├── RgbaScaler.h ├── RgbaScaler.mm ├── algo ├── common.h ├── concurrency.hpp ├── fast_math-inl.h ├── math-inl.h ├── rational_polynomial-inl.h ├── sampler-inl.h ├── sampler.h ├── sleef-inl.cpp └── sleef-inl.h ├── half.hpp └── include └── module.modulemap /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: awxkee 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/.gitignore -------------------------------------------------------------------------------- /.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /.swiftpm/xcode/xcuserdata/radzivonbartoshyk.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/.swiftpm/xcode/xcuserdata/radzivonbartoshyk.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /Jxl Coder.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Jxl Coder.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Jxl Coder.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Jxl Coder.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Jxl Coder.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Jxl Coder.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Jxl Coder.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Jxl Coder.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /Jxl Coder.xcodeproj/xcshareddata/xcschemes/Jxl Coder.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Jxl Coder.xcodeproj/xcshareddata/xcschemes/Jxl Coder.xcscheme -------------------------------------------------------------------------------- /Jxl Coder.xcodeproj/xcuserdata/radzivonbartoshyk.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Jxl Coder.xcodeproj/xcuserdata/radzivonbartoshyk.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /Jxl Coder.xcodeproj/xcuserdata/radzivonbartoshyk.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Jxl Coder.xcodeproj/xcuserdata/radzivonbartoshyk.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Jxl Coder.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Jxl Coder.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Jxl Coder.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Jxl Coder.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Jxl Coder.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Jxl Coder.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /Jxl Coder/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Jxl Coder/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Jxl Coder/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Jxl Coder/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Jxl Coder/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Jxl Coder/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Jxl Coder/Assets.xcassets/test_1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Jxl Coder/Assets.xcassets/test_1.imageset/Contents.json -------------------------------------------------------------------------------- /Jxl Coder/Assets.xcassets/test_1.imageset/test_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Jxl Coder/Assets.xcassets/test_1.imageset/test_1.png -------------------------------------------------------------------------------- /Jxl Coder/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Jxl Coder/ContentView.swift -------------------------------------------------------------------------------- /Jxl Coder/Jxl Coder-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Jxl Coder/Jxl Coder-Bridging-Header.h -------------------------------------------------------------------------------- /Jxl Coder/Jxl_CoderApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Jxl Coder/Jxl_CoderApp.swift -------------------------------------------------------------------------------- /Jxl Coder/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Jxl Coder/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Jxl Coder/Resources/first.jxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Jxl Coder/Resources/first.jxl -------------------------------------------------------------------------------- /Jxl Coder/Resources/pexels-cheng.jxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Jxl Coder/Resources/pexels-cheng.jxl -------------------------------------------------------------------------------- /Jxl Coder/Resources/pngtree.jxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Jxl Coder/Resources/pngtree.jxl -------------------------------------------------------------------------------- /Jxl Coder/Resources/second.jxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Jxl Coder/Resources/second.jxl -------------------------------------------------------------------------------- /JxlCoder.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/JxlCoder.podspec -------------------------------------------------------------------------------- /JxlNukePlugin/JxlNukePlugin.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/JxlNukePlugin/JxlNukePlugin.swift -------------------------------------------------------------------------------- /JxlSDWebImageCoder.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/JxlSDWebImageCoder.podspec -------------------------------------------------------------------------------- /JxlSDWebImageCoder/JxlSDWebImageCoder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/JxlSDWebImageCoder/JxlSDWebImageCoder.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Package.swift -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Podfile -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Podfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/README.md -------------------------------------------------------------------------------- /Sources/Frameworks/libbrotlicommon.xcframework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libbrotlicommon.xcframework/Info.plist -------------------------------------------------------------------------------- /Sources/Frameworks/libbrotlicommon.xcframework/ios-arm64/Headers/libbrotlicommon.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Stub 3 | */ 4 | -------------------------------------------------------------------------------- /Sources/Frameworks/libbrotlicommon.xcframework/ios-arm64/libbrotlicommon.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libbrotlicommon.xcframework/ios-arm64/libbrotlicommon.a -------------------------------------------------------------------------------- /Sources/Frameworks/libbrotlicommon.xcframework/ios-arm64_x86_64-simulator/Headers/libbrotlicommon.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Stub 3 | */ 4 | -------------------------------------------------------------------------------- /Sources/Frameworks/libbrotlicommon.xcframework/ios-arm64_x86_64-simulator/libbrotlicommon.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libbrotlicommon.xcframework/ios-arm64_x86_64-simulator/libbrotlicommon.a -------------------------------------------------------------------------------- /Sources/Frameworks/libbrotlicommon.xcframework/macos-arm64_x86_64/Headers/libbrotlicommon.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Stub 3 | */ 4 | -------------------------------------------------------------------------------- /Sources/Frameworks/libbrotlicommon.xcframework/macos-arm64_x86_64/libbrotlicommon.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libbrotlicommon.xcframework/macos-arm64_x86_64/libbrotlicommon.a -------------------------------------------------------------------------------- /Sources/Frameworks/libbrotlidec.xcframework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libbrotlidec.xcframework/Info.plist -------------------------------------------------------------------------------- /Sources/Frameworks/libbrotlidec.xcframework/ios-arm64/Headers/libbrotlidec.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Stub 3 | */ 4 | -------------------------------------------------------------------------------- /Sources/Frameworks/libbrotlidec.xcframework/ios-arm64/libbrotlidec.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libbrotlidec.xcframework/ios-arm64/libbrotlidec.a -------------------------------------------------------------------------------- /Sources/Frameworks/libbrotlidec.xcframework/ios-arm64_x86_64-simulator/Headers/libbrotlidec.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Stub 3 | */ 4 | -------------------------------------------------------------------------------- /Sources/Frameworks/libbrotlidec.xcframework/ios-arm64_x86_64-simulator/libbrotlidec.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libbrotlidec.xcframework/ios-arm64_x86_64-simulator/libbrotlidec.a -------------------------------------------------------------------------------- /Sources/Frameworks/libbrotlidec.xcframework/macos-arm64_x86_64/Headers/libbrotlidec.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Stub 3 | */ 4 | -------------------------------------------------------------------------------- /Sources/Frameworks/libbrotlidec.xcframework/macos-arm64_x86_64/libbrotlidec.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libbrotlidec.xcframework/macos-arm64_x86_64/libbrotlidec.a -------------------------------------------------------------------------------- /Sources/Frameworks/libbrotlienc.xcframework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libbrotlienc.xcframework/Info.plist -------------------------------------------------------------------------------- /Sources/Frameworks/libbrotlienc.xcframework/ios-arm64/Headers/libbrotlienc.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Stub 3 | */ 4 | -------------------------------------------------------------------------------- /Sources/Frameworks/libbrotlienc.xcframework/ios-arm64/libbrotlienc.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libbrotlienc.xcframework/ios-arm64/libbrotlienc.a -------------------------------------------------------------------------------- /Sources/Frameworks/libbrotlienc.xcframework/ios-arm64_x86_64-simulator/Headers/libbrotlienc.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Stub 3 | */ 4 | -------------------------------------------------------------------------------- /Sources/Frameworks/libbrotlienc.xcframework/ios-arm64_x86_64-simulator/libbrotlienc.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libbrotlienc.xcframework/ios-arm64_x86_64-simulator/libbrotlienc.a -------------------------------------------------------------------------------- /Sources/Frameworks/libbrotlienc.xcframework/macos-arm64_x86_64/Headers/libbrotlienc.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Stub 3 | */ 4 | -------------------------------------------------------------------------------- /Sources/Frameworks/libbrotlienc.xcframework/macos-arm64_x86_64/libbrotlienc.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libbrotlienc.xcframework/macos-arm64_x86_64/libbrotlienc.a -------------------------------------------------------------------------------- /Sources/Frameworks/libhwy.xcframework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libhwy.xcframework/Info.plist -------------------------------------------------------------------------------- /Sources/Frameworks/libhwy.xcframework/ios-arm64/Headers/hwy/aligned_allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libhwy.xcframework/ios-arm64/Headers/hwy/aligned_allocator.h -------------------------------------------------------------------------------- /Sources/Frameworks/libhwy.xcframework/ios-arm64/Headers/hwy/base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libhwy.xcframework/ios-arm64/Headers/hwy/base.h -------------------------------------------------------------------------------- /Sources/Frameworks/libhwy.xcframework/ios-arm64/Headers/hwy/cache_control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libhwy.xcframework/ios-arm64/Headers/hwy/cache_control.h -------------------------------------------------------------------------------- /Sources/Frameworks/libhwy.xcframework/ios-arm64/Headers/hwy/detect_compiler_arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libhwy.xcframework/ios-arm64/Headers/hwy/detect_compiler_arch.h -------------------------------------------------------------------------------- /Sources/Frameworks/libhwy.xcframework/ios-arm64/Headers/hwy/detect_targets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libhwy.xcframework/ios-arm64/Headers/hwy/detect_targets.h -------------------------------------------------------------------------------- /Sources/Frameworks/libhwy.xcframework/ios-arm64/Headers/hwy/foreach_target.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libhwy.xcframework/ios-arm64/Headers/hwy/foreach_target.h -------------------------------------------------------------------------------- /Sources/Frameworks/libhwy.xcframework/ios-arm64/Headers/hwy/highway.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libhwy.xcframework/ios-arm64/Headers/hwy/highway.h -------------------------------------------------------------------------------- /Sources/Frameworks/libhwy.xcframework/ios-arm64/Headers/hwy/highway_export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libhwy.xcframework/ios-arm64/Headers/hwy/highway_export.h -------------------------------------------------------------------------------- /Sources/Frameworks/libhwy.xcframework/ios-arm64/Headers/hwy/ops/arm_neon-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libhwy.xcframework/ios-arm64/Headers/hwy/ops/arm_neon-inl.h -------------------------------------------------------------------------------- /Sources/Frameworks/libhwy.xcframework/ios-arm64/Headers/hwy/ops/arm_sve-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libhwy.xcframework/ios-arm64/Headers/hwy/ops/arm_sve-inl.h -------------------------------------------------------------------------------- /Sources/Frameworks/libhwy.xcframework/ios-arm64/Headers/hwy/ops/emu128-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libhwy.xcframework/ios-arm64/Headers/hwy/ops/emu128-inl.h -------------------------------------------------------------------------------- /Sources/Frameworks/libhwy.xcframework/ios-arm64/Headers/hwy/ops/generic_ops-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libhwy.xcframework/ios-arm64/Headers/hwy/ops/generic_ops-inl.h -------------------------------------------------------------------------------- /Sources/Frameworks/libhwy.xcframework/ios-arm64/Headers/hwy/ops/ppc_vsx-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libhwy.xcframework/ios-arm64/Headers/hwy/ops/ppc_vsx-inl.h -------------------------------------------------------------------------------- /Sources/Frameworks/libhwy.xcframework/ios-arm64/Headers/hwy/ops/rvv-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libhwy.xcframework/ios-arm64/Headers/hwy/ops/rvv-inl.h -------------------------------------------------------------------------------- /Sources/Frameworks/libhwy.xcframework/ios-arm64/Headers/hwy/ops/scalar-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libhwy.xcframework/ios-arm64/Headers/hwy/ops/scalar-inl.h -------------------------------------------------------------------------------- /Sources/Frameworks/libhwy.xcframework/ios-arm64/Headers/hwy/ops/set_macros-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libhwy.xcframework/ios-arm64/Headers/hwy/ops/set_macros-inl.h -------------------------------------------------------------------------------- /Sources/Frameworks/libhwy.xcframework/ios-arm64/Headers/hwy/ops/shared-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libhwy.xcframework/ios-arm64/Headers/hwy/ops/shared-inl.h -------------------------------------------------------------------------------- /Sources/Frameworks/libhwy.xcframework/ios-arm64/Headers/hwy/ops/tuple-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libhwy.xcframework/ios-arm64/Headers/hwy/ops/tuple-inl.h -------------------------------------------------------------------------------- /Sources/Frameworks/libhwy.xcframework/ios-arm64/Headers/hwy/ops/wasm_128-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libhwy.xcframework/ios-arm64/Headers/hwy/ops/wasm_128-inl.h -------------------------------------------------------------------------------- /Sources/Frameworks/libhwy.xcframework/ios-arm64/Headers/hwy/ops/wasm_256-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libhwy.xcframework/ios-arm64/Headers/hwy/ops/wasm_256-inl.h -------------------------------------------------------------------------------- /Sources/Frameworks/libhwy.xcframework/ios-arm64/Headers/hwy/ops/x86_128-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libhwy.xcframework/ios-arm64/Headers/hwy/ops/x86_128-inl.h -------------------------------------------------------------------------------- /Sources/Frameworks/libhwy.xcframework/ios-arm64/Headers/hwy/ops/x86_256-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libhwy.xcframework/ios-arm64/Headers/hwy/ops/x86_256-inl.h -------------------------------------------------------------------------------- /Sources/Frameworks/libhwy.xcframework/ios-arm64/Headers/hwy/ops/x86_512-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libhwy.xcframework/ios-arm64/Headers/hwy/ops/x86_512-inl.h -------------------------------------------------------------------------------- /Sources/Frameworks/libhwy.xcframework/ios-arm64/Headers/hwy/per_target.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libhwy.xcframework/ios-arm64/Headers/hwy/per_target.h -------------------------------------------------------------------------------- /Sources/Frameworks/libhwy.xcframework/ios-arm64/Headers/hwy/print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libhwy.xcframework/ios-arm64/Headers/hwy/print.h -------------------------------------------------------------------------------- /Sources/Frameworks/libhwy.xcframework/ios-arm64/Headers/hwy/robust_statistics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libhwy.xcframework/ios-arm64/Headers/hwy/robust_statistics.h -------------------------------------------------------------------------------- /Sources/Frameworks/libhwy.xcframework/ios-arm64/Headers/hwy/targets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libhwy.xcframework/ios-arm64/Headers/hwy/targets.h -------------------------------------------------------------------------------- /Sources/Frameworks/libhwy.xcframework/ios-arm64/Headers/hwy/timer-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libhwy.xcframework/ios-arm64/Headers/hwy/timer-inl.h -------------------------------------------------------------------------------- /Sources/Frameworks/libhwy.xcframework/ios-arm64/Headers/hwy/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libhwy.xcframework/ios-arm64/Headers/hwy/timer.h -------------------------------------------------------------------------------- /Sources/Frameworks/libhwy.xcframework/ios-arm64/Headers/libhwy.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Stub 3 | */ 4 | -------------------------------------------------------------------------------- /Sources/Frameworks/libhwy.xcframework/ios-arm64/libhwy.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libhwy.xcframework/ios-arm64/libhwy.a -------------------------------------------------------------------------------- /Sources/Frameworks/libhwy.xcframework/ios-arm64_x86_64-simulator/Headers/hwy/aligned_allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libhwy.xcframework/ios-arm64_x86_64-simulator/Headers/hwy/aligned_allocator.h -------------------------------------------------------------------------------- /Sources/Frameworks/libhwy.xcframework/ios-arm64_x86_64-simulator/Headers/hwy/base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libhwy.xcframework/ios-arm64_x86_64-simulator/Headers/hwy/base.h -------------------------------------------------------------------------------- /Sources/Frameworks/libhwy.xcframework/ios-arm64_x86_64-simulator/Headers/hwy/cache_control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libhwy.xcframework/ios-arm64_x86_64-simulator/Headers/hwy/cache_control.h -------------------------------------------------------------------------------- /Sources/Frameworks/libhwy.xcframework/ios-arm64_x86_64-simulator/Headers/hwy/detect_compiler_arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libhwy.xcframework/ios-arm64_x86_64-simulator/Headers/hwy/detect_compiler_arch.h -------------------------------------------------------------------------------- /Sources/Frameworks/libhwy.xcframework/ios-arm64_x86_64-simulator/Headers/hwy/detect_targets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libhwy.xcframework/ios-arm64_x86_64-simulator/Headers/hwy/detect_targets.h -------------------------------------------------------------------------------- /Sources/Frameworks/libhwy.xcframework/ios-arm64_x86_64-simulator/Headers/hwy/foreach_target.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libhwy.xcframework/ios-arm64_x86_64-simulator/Headers/hwy/foreach_target.h -------------------------------------------------------------------------------- /Sources/Frameworks/libhwy.xcframework/ios-arm64_x86_64-simulator/Headers/hwy/highway.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libhwy.xcframework/ios-arm64_x86_64-simulator/Headers/hwy/highway.h -------------------------------------------------------------------------------- /Sources/Frameworks/libhwy.xcframework/ios-arm64_x86_64-simulator/Headers/hwy/highway_export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libhwy.xcframework/ios-arm64_x86_64-simulator/Headers/hwy/highway_export.h -------------------------------------------------------------------------------- /Sources/Frameworks/libhwy.xcframework/ios-arm64_x86_64-simulator/Headers/hwy/ops/arm_neon-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libhwy.xcframework/ios-arm64_x86_64-simulator/Headers/hwy/ops/arm_neon-inl.h -------------------------------------------------------------------------------- /Sources/Frameworks/libhwy.xcframework/ios-arm64_x86_64-simulator/Headers/hwy/ops/arm_sve-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libhwy.xcframework/ios-arm64_x86_64-simulator/Headers/hwy/ops/arm_sve-inl.h -------------------------------------------------------------------------------- /Sources/Frameworks/libhwy.xcframework/ios-arm64_x86_64-simulator/Headers/hwy/ops/emu128-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libhwy.xcframework/ios-arm64_x86_64-simulator/Headers/hwy/ops/emu128-inl.h -------------------------------------------------------------------------------- /Sources/Frameworks/libhwy.xcframework/ios-arm64_x86_64-simulator/Headers/hwy/ops/generic_ops-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libhwy.xcframework/ios-arm64_x86_64-simulator/Headers/hwy/ops/generic_ops-inl.h -------------------------------------------------------------------------------- /Sources/Frameworks/libhwy.xcframework/ios-arm64_x86_64-simulator/Headers/hwy/ops/ppc_vsx-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libhwy.xcframework/ios-arm64_x86_64-simulator/Headers/hwy/ops/ppc_vsx-inl.h -------------------------------------------------------------------------------- /Sources/Frameworks/libhwy.xcframework/ios-arm64_x86_64-simulator/Headers/hwy/ops/rvv-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libhwy.xcframework/ios-arm64_x86_64-simulator/Headers/hwy/ops/rvv-inl.h -------------------------------------------------------------------------------- /Sources/Frameworks/libhwy.xcframework/ios-arm64_x86_64-simulator/Headers/hwy/ops/scalar-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libhwy.xcframework/ios-arm64_x86_64-simulator/Headers/hwy/ops/scalar-inl.h -------------------------------------------------------------------------------- /Sources/Frameworks/libhwy.xcframework/ios-arm64_x86_64-simulator/Headers/hwy/ops/set_macros-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libhwy.xcframework/ios-arm64_x86_64-simulator/Headers/hwy/ops/set_macros-inl.h -------------------------------------------------------------------------------- /Sources/Frameworks/libhwy.xcframework/ios-arm64_x86_64-simulator/Headers/hwy/ops/shared-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libhwy.xcframework/ios-arm64_x86_64-simulator/Headers/hwy/ops/shared-inl.h -------------------------------------------------------------------------------- /Sources/Frameworks/libhwy.xcframework/ios-arm64_x86_64-simulator/Headers/hwy/ops/tuple-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libhwy.xcframework/ios-arm64_x86_64-simulator/Headers/hwy/ops/tuple-inl.h -------------------------------------------------------------------------------- /Sources/Frameworks/libhwy.xcframework/ios-arm64_x86_64-simulator/Headers/hwy/ops/wasm_128-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libhwy.xcframework/ios-arm64_x86_64-simulator/Headers/hwy/ops/wasm_128-inl.h -------------------------------------------------------------------------------- /Sources/Frameworks/libhwy.xcframework/ios-arm64_x86_64-simulator/Headers/hwy/ops/wasm_256-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libhwy.xcframework/ios-arm64_x86_64-simulator/Headers/hwy/ops/wasm_256-inl.h -------------------------------------------------------------------------------- /Sources/Frameworks/libhwy.xcframework/ios-arm64_x86_64-simulator/Headers/hwy/ops/x86_128-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libhwy.xcframework/ios-arm64_x86_64-simulator/Headers/hwy/ops/x86_128-inl.h -------------------------------------------------------------------------------- /Sources/Frameworks/libhwy.xcframework/ios-arm64_x86_64-simulator/Headers/hwy/ops/x86_256-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libhwy.xcframework/ios-arm64_x86_64-simulator/Headers/hwy/ops/x86_256-inl.h -------------------------------------------------------------------------------- /Sources/Frameworks/libhwy.xcframework/ios-arm64_x86_64-simulator/Headers/hwy/ops/x86_512-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libhwy.xcframework/ios-arm64_x86_64-simulator/Headers/hwy/ops/x86_512-inl.h -------------------------------------------------------------------------------- /Sources/Frameworks/libhwy.xcframework/ios-arm64_x86_64-simulator/Headers/hwy/per_target.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libhwy.xcframework/ios-arm64_x86_64-simulator/Headers/hwy/per_target.h -------------------------------------------------------------------------------- /Sources/Frameworks/libhwy.xcframework/ios-arm64_x86_64-simulator/Headers/hwy/print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libhwy.xcframework/ios-arm64_x86_64-simulator/Headers/hwy/print.h -------------------------------------------------------------------------------- /Sources/Frameworks/libhwy.xcframework/ios-arm64_x86_64-simulator/Headers/hwy/robust_statistics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libhwy.xcframework/ios-arm64_x86_64-simulator/Headers/hwy/robust_statistics.h -------------------------------------------------------------------------------- /Sources/Frameworks/libhwy.xcframework/ios-arm64_x86_64-simulator/Headers/hwy/targets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libhwy.xcframework/ios-arm64_x86_64-simulator/Headers/hwy/targets.h -------------------------------------------------------------------------------- /Sources/Frameworks/libhwy.xcframework/ios-arm64_x86_64-simulator/Headers/hwy/timer-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libhwy.xcframework/ios-arm64_x86_64-simulator/Headers/hwy/timer-inl.h -------------------------------------------------------------------------------- /Sources/Frameworks/libhwy.xcframework/ios-arm64_x86_64-simulator/Headers/hwy/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libhwy.xcframework/ios-arm64_x86_64-simulator/Headers/hwy/timer.h -------------------------------------------------------------------------------- /Sources/Frameworks/libhwy.xcframework/ios-arm64_x86_64-simulator/Headers/libhwy.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Stub 3 | */ 4 | -------------------------------------------------------------------------------- /Sources/Frameworks/libhwy.xcframework/ios-arm64_x86_64-simulator/libhwy.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libhwy.xcframework/ios-arm64_x86_64-simulator/libhwy.a -------------------------------------------------------------------------------- /Sources/Frameworks/libhwy.xcframework/macos-arm64_x86_64/Headers/hwy/aligned_allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libhwy.xcframework/macos-arm64_x86_64/Headers/hwy/aligned_allocator.h -------------------------------------------------------------------------------- /Sources/Frameworks/libhwy.xcframework/macos-arm64_x86_64/Headers/hwy/base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libhwy.xcframework/macos-arm64_x86_64/Headers/hwy/base.h -------------------------------------------------------------------------------- /Sources/Frameworks/libhwy.xcframework/macos-arm64_x86_64/Headers/hwy/cache_control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libhwy.xcframework/macos-arm64_x86_64/Headers/hwy/cache_control.h -------------------------------------------------------------------------------- /Sources/Frameworks/libhwy.xcframework/macos-arm64_x86_64/Headers/hwy/detect_compiler_arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libhwy.xcframework/macos-arm64_x86_64/Headers/hwy/detect_compiler_arch.h -------------------------------------------------------------------------------- /Sources/Frameworks/libhwy.xcframework/macos-arm64_x86_64/Headers/hwy/detect_targets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libhwy.xcframework/macos-arm64_x86_64/Headers/hwy/detect_targets.h -------------------------------------------------------------------------------- /Sources/Frameworks/libhwy.xcframework/macos-arm64_x86_64/Headers/hwy/foreach_target.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libhwy.xcframework/macos-arm64_x86_64/Headers/hwy/foreach_target.h -------------------------------------------------------------------------------- /Sources/Frameworks/libhwy.xcframework/macos-arm64_x86_64/Headers/hwy/highway.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libhwy.xcframework/macos-arm64_x86_64/Headers/hwy/highway.h -------------------------------------------------------------------------------- /Sources/Frameworks/libhwy.xcframework/macos-arm64_x86_64/Headers/hwy/highway_export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libhwy.xcframework/macos-arm64_x86_64/Headers/hwy/highway_export.h -------------------------------------------------------------------------------- /Sources/Frameworks/libhwy.xcframework/macos-arm64_x86_64/Headers/hwy/ops/arm_neon-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libhwy.xcframework/macos-arm64_x86_64/Headers/hwy/ops/arm_neon-inl.h -------------------------------------------------------------------------------- /Sources/Frameworks/libhwy.xcframework/macos-arm64_x86_64/Headers/hwy/ops/arm_sve-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libhwy.xcframework/macos-arm64_x86_64/Headers/hwy/ops/arm_sve-inl.h -------------------------------------------------------------------------------- /Sources/Frameworks/libhwy.xcframework/macos-arm64_x86_64/Headers/hwy/ops/emu128-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libhwy.xcframework/macos-arm64_x86_64/Headers/hwy/ops/emu128-inl.h -------------------------------------------------------------------------------- /Sources/Frameworks/libhwy.xcframework/macos-arm64_x86_64/Headers/hwy/ops/generic_ops-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libhwy.xcframework/macos-arm64_x86_64/Headers/hwy/ops/generic_ops-inl.h -------------------------------------------------------------------------------- /Sources/Frameworks/libhwy.xcframework/macos-arm64_x86_64/Headers/hwy/ops/ppc_vsx-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libhwy.xcframework/macos-arm64_x86_64/Headers/hwy/ops/ppc_vsx-inl.h -------------------------------------------------------------------------------- /Sources/Frameworks/libhwy.xcframework/macos-arm64_x86_64/Headers/hwy/ops/rvv-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libhwy.xcframework/macos-arm64_x86_64/Headers/hwy/ops/rvv-inl.h -------------------------------------------------------------------------------- /Sources/Frameworks/libhwy.xcframework/macos-arm64_x86_64/Headers/hwy/ops/scalar-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libhwy.xcframework/macos-arm64_x86_64/Headers/hwy/ops/scalar-inl.h -------------------------------------------------------------------------------- /Sources/Frameworks/libhwy.xcframework/macos-arm64_x86_64/Headers/hwy/ops/set_macros-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libhwy.xcframework/macos-arm64_x86_64/Headers/hwy/ops/set_macros-inl.h -------------------------------------------------------------------------------- /Sources/Frameworks/libhwy.xcframework/macos-arm64_x86_64/Headers/hwy/ops/shared-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libhwy.xcframework/macos-arm64_x86_64/Headers/hwy/ops/shared-inl.h -------------------------------------------------------------------------------- /Sources/Frameworks/libhwy.xcframework/macos-arm64_x86_64/Headers/hwy/ops/tuple-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libhwy.xcframework/macos-arm64_x86_64/Headers/hwy/ops/tuple-inl.h -------------------------------------------------------------------------------- /Sources/Frameworks/libhwy.xcframework/macos-arm64_x86_64/Headers/hwy/ops/wasm_128-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libhwy.xcframework/macos-arm64_x86_64/Headers/hwy/ops/wasm_128-inl.h -------------------------------------------------------------------------------- /Sources/Frameworks/libhwy.xcframework/macos-arm64_x86_64/Headers/hwy/ops/wasm_256-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libhwy.xcframework/macos-arm64_x86_64/Headers/hwy/ops/wasm_256-inl.h -------------------------------------------------------------------------------- /Sources/Frameworks/libhwy.xcframework/macos-arm64_x86_64/Headers/hwy/ops/x86_128-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libhwy.xcframework/macos-arm64_x86_64/Headers/hwy/ops/x86_128-inl.h -------------------------------------------------------------------------------- /Sources/Frameworks/libhwy.xcframework/macos-arm64_x86_64/Headers/hwy/ops/x86_256-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libhwy.xcframework/macos-arm64_x86_64/Headers/hwy/ops/x86_256-inl.h -------------------------------------------------------------------------------- /Sources/Frameworks/libhwy.xcframework/macos-arm64_x86_64/Headers/hwy/ops/x86_512-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libhwy.xcframework/macos-arm64_x86_64/Headers/hwy/ops/x86_512-inl.h -------------------------------------------------------------------------------- /Sources/Frameworks/libhwy.xcframework/macos-arm64_x86_64/Headers/hwy/per_target.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libhwy.xcframework/macos-arm64_x86_64/Headers/hwy/per_target.h -------------------------------------------------------------------------------- /Sources/Frameworks/libhwy.xcframework/macos-arm64_x86_64/Headers/hwy/print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libhwy.xcframework/macos-arm64_x86_64/Headers/hwy/print.h -------------------------------------------------------------------------------- /Sources/Frameworks/libhwy.xcframework/macos-arm64_x86_64/Headers/hwy/robust_statistics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libhwy.xcframework/macos-arm64_x86_64/Headers/hwy/robust_statistics.h -------------------------------------------------------------------------------- /Sources/Frameworks/libhwy.xcframework/macos-arm64_x86_64/Headers/hwy/targets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libhwy.xcframework/macos-arm64_x86_64/Headers/hwy/targets.h -------------------------------------------------------------------------------- /Sources/Frameworks/libhwy.xcframework/macos-arm64_x86_64/Headers/hwy/timer-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libhwy.xcframework/macos-arm64_x86_64/Headers/hwy/timer-inl.h -------------------------------------------------------------------------------- /Sources/Frameworks/libhwy.xcframework/macos-arm64_x86_64/Headers/hwy/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libhwy.xcframework/macos-arm64_x86_64/Headers/hwy/timer.h -------------------------------------------------------------------------------- /Sources/Frameworks/libhwy.xcframework/macos-arm64_x86_64/Headers/libhwy.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Stub 3 | */ 4 | -------------------------------------------------------------------------------- /Sources/Frameworks/libhwy.xcframework/macos-arm64_x86_64/libhwy.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libhwy.xcframework/macos-arm64_x86_64/libhwy.a -------------------------------------------------------------------------------- /Sources/Frameworks/libjpegli.xcframework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libjpegli.xcframework/Info.plist -------------------------------------------------------------------------------- /Sources/Frameworks/libjpegli.xcframework/ios-arm64/Headers/jpegli/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libjpegli.xcframework/ios-arm64/Headers/jpegli/common.h -------------------------------------------------------------------------------- /Sources/Frameworks/libjpegli.xcframework/ios-arm64/Headers/jpegli/decode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libjpegli.xcframework/ios-arm64/Headers/jpegli/decode.h -------------------------------------------------------------------------------- /Sources/Frameworks/libjpegli.xcframework/ios-arm64/Headers/jpegli/encode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libjpegli.xcframework/ios-arm64/Headers/jpegli/encode.h -------------------------------------------------------------------------------- /Sources/Frameworks/libjpegli.xcframework/ios-arm64/Headers/jpegli/jconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libjpegli.xcframework/ios-arm64/Headers/jpegli/jconfig.h -------------------------------------------------------------------------------- /Sources/Frameworks/libjpegli.xcframework/ios-arm64/Headers/jpegli/jmorecfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libjpegli.xcframework/ios-arm64/Headers/jpegli/jmorecfg.h -------------------------------------------------------------------------------- /Sources/Frameworks/libjpegli.xcframework/ios-arm64/Headers/jpegli/jpeglib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libjpegli.xcframework/ios-arm64/Headers/jpegli/jpeglib.h -------------------------------------------------------------------------------- /Sources/Frameworks/libjpegli.xcframework/ios-arm64/Headers/jpegli/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libjpegli.xcframework/ios-arm64/Headers/jpegli/types.h -------------------------------------------------------------------------------- /Sources/Frameworks/libjpegli.xcframework/ios-arm64/libjpegli.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libjpegli.xcframework/ios-arm64/libjpegli.a -------------------------------------------------------------------------------- /Sources/Frameworks/libjpegli.xcframework/ios-arm64_x86_64-simulator/Headers/jpegli/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libjpegli.xcframework/ios-arm64_x86_64-simulator/Headers/jpegli/common.h -------------------------------------------------------------------------------- /Sources/Frameworks/libjpegli.xcframework/ios-arm64_x86_64-simulator/Headers/jpegli/decode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libjpegli.xcframework/ios-arm64_x86_64-simulator/Headers/jpegli/decode.h -------------------------------------------------------------------------------- /Sources/Frameworks/libjpegli.xcframework/ios-arm64_x86_64-simulator/Headers/jpegli/encode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libjpegli.xcframework/ios-arm64_x86_64-simulator/Headers/jpegli/encode.h -------------------------------------------------------------------------------- /Sources/Frameworks/libjpegli.xcframework/ios-arm64_x86_64-simulator/Headers/jpegli/jconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libjpegli.xcframework/ios-arm64_x86_64-simulator/Headers/jpegli/jconfig.h -------------------------------------------------------------------------------- /Sources/Frameworks/libjpegli.xcframework/ios-arm64_x86_64-simulator/Headers/jpegli/jmorecfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libjpegli.xcframework/ios-arm64_x86_64-simulator/Headers/jpegli/jmorecfg.h -------------------------------------------------------------------------------- /Sources/Frameworks/libjpegli.xcframework/ios-arm64_x86_64-simulator/Headers/jpegli/jpeglib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libjpegli.xcframework/ios-arm64_x86_64-simulator/Headers/jpegli/jpeglib.h -------------------------------------------------------------------------------- /Sources/Frameworks/libjpegli.xcframework/ios-arm64_x86_64-simulator/Headers/jpegli/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libjpegli.xcframework/ios-arm64_x86_64-simulator/Headers/jpegli/types.h -------------------------------------------------------------------------------- /Sources/Frameworks/libjpegli.xcframework/ios-arm64_x86_64-simulator/libjpegli.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libjpegli.xcframework/ios-arm64_x86_64-simulator/libjpegli.a -------------------------------------------------------------------------------- /Sources/Frameworks/libjpegli.xcframework/macos-arm64_x86_64/Headers/jpegli/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libjpegli.xcframework/macos-arm64_x86_64/Headers/jpegli/common.h -------------------------------------------------------------------------------- /Sources/Frameworks/libjpegli.xcframework/macos-arm64_x86_64/Headers/jpegli/decode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libjpegli.xcframework/macos-arm64_x86_64/Headers/jpegli/decode.h -------------------------------------------------------------------------------- /Sources/Frameworks/libjpegli.xcframework/macos-arm64_x86_64/Headers/jpegli/encode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libjpegli.xcframework/macos-arm64_x86_64/Headers/jpegli/encode.h -------------------------------------------------------------------------------- /Sources/Frameworks/libjpegli.xcframework/macos-arm64_x86_64/Headers/jpegli/jconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libjpegli.xcframework/macos-arm64_x86_64/Headers/jpegli/jconfig.h -------------------------------------------------------------------------------- /Sources/Frameworks/libjpegli.xcframework/macos-arm64_x86_64/Headers/jpegli/jmorecfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libjpegli.xcframework/macos-arm64_x86_64/Headers/jpegli/jmorecfg.h -------------------------------------------------------------------------------- /Sources/Frameworks/libjpegli.xcframework/macos-arm64_x86_64/Headers/jpegli/jpeglib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libjpegli.xcframework/macos-arm64_x86_64/Headers/jpegli/jpeglib.h -------------------------------------------------------------------------------- /Sources/Frameworks/libjpegli.xcframework/macos-arm64_x86_64/Headers/jpegli/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libjpegli.xcframework/macos-arm64_x86_64/Headers/jpegli/types.h -------------------------------------------------------------------------------- /Sources/Frameworks/libjpegli.xcframework/macos-arm64_x86_64/libjpegli.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libjpegli.xcframework/macos-arm64_x86_64/libjpegli.a -------------------------------------------------------------------------------- /Sources/Frameworks/libjxl.xcframework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libjxl.xcframework/Info.plist -------------------------------------------------------------------------------- /Sources/Frameworks/libjxl.xcframework/ios-arm64/Headers/jxl/cms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libjxl.xcframework/ios-arm64/Headers/jxl/cms.h -------------------------------------------------------------------------------- /Sources/Frameworks/libjxl.xcframework/ios-arm64/Headers/jxl/cms_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libjxl.xcframework/ios-arm64/Headers/jxl/cms_interface.h -------------------------------------------------------------------------------- /Sources/Frameworks/libjxl.xcframework/ios-arm64/Headers/jxl/codestream_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libjxl.xcframework/ios-arm64/Headers/jxl/codestream_header.h -------------------------------------------------------------------------------- /Sources/Frameworks/libjxl.xcframework/ios-arm64/Headers/jxl/color_encoding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libjxl.xcframework/ios-arm64/Headers/jxl/color_encoding.h -------------------------------------------------------------------------------- /Sources/Frameworks/libjxl.xcframework/ios-arm64/Headers/jxl/decode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libjxl.xcframework/ios-arm64/Headers/jxl/decode.h -------------------------------------------------------------------------------- /Sources/Frameworks/libjxl.xcframework/ios-arm64/Headers/jxl/decode_cxx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libjxl.xcframework/ios-arm64/Headers/jxl/decode_cxx.h -------------------------------------------------------------------------------- /Sources/Frameworks/libjxl.xcframework/ios-arm64/Headers/jxl/encode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libjxl.xcframework/ios-arm64/Headers/jxl/encode.h -------------------------------------------------------------------------------- /Sources/Frameworks/libjxl.xcframework/ios-arm64/Headers/jxl/encode_cxx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libjxl.xcframework/ios-arm64/Headers/jxl/encode_cxx.h -------------------------------------------------------------------------------- /Sources/Frameworks/libjxl.xcframework/ios-arm64/Headers/jxl/jxl_cms_export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libjxl.xcframework/ios-arm64/Headers/jxl/jxl_cms_export.h -------------------------------------------------------------------------------- /Sources/Frameworks/libjxl.xcframework/ios-arm64/Headers/jxl/jxl_export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libjxl.xcframework/ios-arm64/Headers/jxl/jxl_export.h -------------------------------------------------------------------------------- /Sources/Frameworks/libjxl.xcframework/ios-arm64/Headers/jxl/jxl_threads_export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libjxl.xcframework/ios-arm64/Headers/jxl/jxl_threads_export.h -------------------------------------------------------------------------------- /Sources/Frameworks/libjxl.xcframework/ios-arm64/Headers/jxl/memory_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libjxl.xcframework/ios-arm64/Headers/jxl/memory_manager.h -------------------------------------------------------------------------------- /Sources/Frameworks/libjxl.xcframework/ios-arm64/Headers/jxl/parallel_runner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libjxl.xcframework/ios-arm64/Headers/jxl/parallel_runner.h -------------------------------------------------------------------------------- /Sources/Frameworks/libjxl.xcframework/ios-arm64/Headers/jxl/resizable_parallel_runner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libjxl.xcframework/ios-arm64/Headers/jxl/resizable_parallel_runner.h -------------------------------------------------------------------------------- /Sources/Frameworks/libjxl.xcframework/ios-arm64/Headers/jxl/resizable_parallel_runner_cxx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libjxl.xcframework/ios-arm64/Headers/jxl/resizable_parallel_runner_cxx.h -------------------------------------------------------------------------------- /Sources/Frameworks/libjxl.xcframework/ios-arm64/Headers/jxl/stats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libjxl.xcframework/ios-arm64/Headers/jxl/stats.h -------------------------------------------------------------------------------- /Sources/Frameworks/libjxl.xcframework/ios-arm64/Headers/jxl/thread_parallel_runner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libjxl.xcframework/ios-arm64/Headers/jxl/thread_parallel_runner.h -------------------------------------------------------------------------------- /Sources/Frameworks/libjxl.xcframework/ios-arm64/Headers/jxl/thread_parallel_runner_cxx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libjxl.xcframework/ios-arm64/Headers/jxl/thread_parallel_runner_cxx.h -------------------------------------------------------------------------------- /Sources/Frameworks/libjxl.xcframework/ios-arm64/Headers/jxl/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libjxl.xcframework/ios-arm64/Headers/jxl/types.h -------------------------------------------------------------------------------- /Sources/Frameworks/libjxl.xcframework/ios-arm64/Headers/jxl/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libjxl.xcframework/ios-arm64/Headers/jxl/version.h -------------------------------------------------------------------------------- /Sources/Frameworks/libjxl.xcframework/ios-arm64/libjxl.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libjxl.xcframework/ios-arm64/libjxl.a -------------------------------------------------------------------------------- /Sources/Frameworks/libjxl.xcframework/ios-arm64_x86_64-simulator/Headers/jxl/cms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libjxl.xcframework/ios-arm64_x86_64-simulator/Headers/jxl/cms.h -------------------------------------------------------------------------------- /Sources/Frameworks/libjxl.xcframework/ios-arm64_x86_64-simulator/Headers/jxl/cms_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libjxl.xcframework/ios-arm64_x86_64-simulator/Headers/jxl/cms_interface.h -------------------------------------------------------------------------------- /Sources/Frameworks/libjxl.xcframework/ios-arm64_x86_64-simulator/Headers/jxl/codestream_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libjxl.xcframework/ios-arm64_x86_64-simulator/Headers/jxl/codestream_header.h -------------------------------------------------------------------------------- /Sources/Frameworks/libjxl.xcframework/ios-arm64_x86_64-simulator/Headers/jxl/color_encoding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libjxl.xcframework/ios-arm64_x86_64-simulator/Headers/jxl/color_encoding.h -------------------------------------------------------------------------------- /Sources/Frameworks/libjxl.xcframework/ios-arm64_x86_64-simulator/Headers/jxl/decode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libjxl.xcframework/ios-arm64_x86_64-simulator/Headers/jxl/decode.h -------------------------------------------------------------------------------- /Sources/Frameworks/libjxl.xcframework/ios-arm64_x86_64-simulator/Headers/jxl/decode_cxx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libjxl.xcframework/ios-arm64_x86_64-simulator/Headers/jxl/decode_cxx.h -------------------------------------------------------------------------------- /Sources/Frameworks/libjxl.xcframework/ios-arm64_x86_64-simulator/Headers/jxl/encode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libjxl.xcframework/ios-arm64_x86_64-simulator/Headers/jxl/encode.h -------------------------------------------------------------------------------- /Sources/Frameworks/libjxl.xcframework/ios-arm64_x86_64-simulator/Headers/jxl/encode_cxx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libjxl.xcframework/ios-arm64_x86_64-simulator/Headers/jxl/encode_cxx.h -------------------------------------------------------------------------------- /Sources/Frameworks/libjxl.xcframework/ios-arm64_x86_64-simulator/Headers/jxl/jxl_cms_export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libjxl.xcframework/ios-arm64_x86_64-simulator/Headers/jxl/jxl_cms_export.h -------------------------------------------------------------------------------- /Sources/Frameworks/libjxl.xcframework/ios-arm64_x86_64-simulator/Headers/jxl/jxl_export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libjxl.xcframework/ios-arm64_x86_64-simulator/Headers/jxl/jxl_export.h -------------------------------------------------------------------------------- /Sources/Frameworks/libjxl.xcframework/ios-arm64_x86_64-simulator/Headers/jxl/jxl_threads_export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libjxl.xcframework/ios-arm64_x86_64-simulator/Headers/jxl/jxl_threads_export.h -------------------------------------------------------------------------------- /Sources/Frameworks/libjxl.xcframework/ios-arm64_x86_64-simulator/Headers/jxl/memory_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libjxl.xcframework/ios-arm64_x86_64-simulator/Headers/jxl/memory_manager.h -------------------------------------------------------------------------------- /Sources/Frameworks/libjxl.xcframework/ios-arm64_x86_64-simulator/Headers/jxl/parallel_runner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libjxl.xcframework/ios-arm64_x86_64-simulator/Headers/jxl/parallel_runner.h -------------------------------------------------------------------------------- /Sources/Frameworks/libjxl.xcframework/ios-arm64_x86_64-simulator/Headers/jxl/resizable_parallel_runner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libjxl.xcframework/ios-arm64_x86_64-simulator/Headers/jxl/resizable_parallel_runner.h -------------------------------------------------------------------------------- /Sources/Frameworks/libjxl.xcframework/ios-arm64_x86_64-simulator/Headers/jxl/resizable_parallel_runner_cxx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libjxl.xcframework/ios-arm64_x86_64-simulator/Headers/jxl/resizable_parallel_runner_cxx.h -------------------------------------------------------------------------------- /Sources/Frameworks/libjxl.xcframework/ios-arm64_x86_64-simulator/Headers/jxl/stats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libjxl.xcframework/ios-arm64_x86_64-simulator/Headers/jxl/stats.h -------------------------------------------------------------------------------- /Sources/Frameworks/libjxl.xcframework/ios-arm64_x86_64-simulator/Headers/jxl/thread_parallel_runner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libjxl.xcframework/ios-arm64_x86_64-simulator/Headers/jxl/thread_parallel_runner.h -------------------------------------------------------------------------------- /Sources/Frameworks/libjxl.xcframework/ios-arm64_x86_64-simulator/Headers/jxl/thread_parallel_runner_cxx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libjxl.xcframework/ios-arm64_x86_64-simulator/Headers/jxl/thread_parallel_runner_cxx.h -------------------------------------------------------------------------------- /Sources/Frameworks/libjxl.xcframework/ios-arm64_x86_64-simulator/Headers/jxl/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libjxl.xcframework/ios-arm64_x86_64-simulator/Headers/jxl/types.h -------------------------------------------------------------------------------- /Sources/Frameworks/libjxl.xcframework/ios-arm64_x86_64-simulator/Headers/jxl/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libjxl.xcframework/ios-arm64_x86_64-simulator/Headers/jxl/version.h -------------------------------------------------------------------------------- /Sources/Frameworks/libjxl.xcframework/ios-arm64_x86_64-simulator/libjxl.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libjxl.xcframework/ios-arm64_x86_64-simulator/libjxl.a -------------------------------------------------------------------------------- /Sources/Frameworks/libjxl.xcframework/macos-arm64_x86_64/Headers/jxl/cms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libjxl.xcframework/macos-arm64_x86_64/Headers/jxl/cms.h -------------------------------------------------------------------------------- /Sources/Frameworks/libjxl.xcframework/macos-arm64_x86_64/Headers/jxl/cms_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libjxl.xcframework/macos-arm64_x86_64/Headers/jxl/cms_interface.h -------------------------------------------------------------------------------- /Sources/Frameworks/libjxl.xcframework/macos-arm64_x86_64/Headers/jxl/codestream_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libjxl.xcframework/macos-arm64_x86_64/Headers/jxl/codestream_header.h -------------------------------------------------------------------------------- /Sources/Frameworks/libjxl.xcframework/macos-arm64_x86_64/Headers/jxl/color_encoding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libjxl.xcframework/macos-arm64_x86_64/Headers/jxl/color_encoding.h -------------------------------------------------------------------------------- /Sources/Frameworks/libjxl.xcframework/macos-arm64_x86_64/Headers/jxl/decode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libjxl.xcframework/macos-arm64_x86_64/Headers/jxl/decode.h -------------------------------------------------------------------------------- /Sources/Frameworks/libjxl.xcframework/macos-arm64_x86_64/Headers/jxl/decode_cxx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libjxl.xcframework/macos-arm64_x86_64/Headers/jxl/decode_cxx.h -------------------------------------------------------------------------------- /Sources/Frameworks/libjxl.xcframework/macos-arm64_x86_64/Headers/jxl/encode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libjxl.xcframework/macos-arm64_x86_64/Headers/jxl/encode.h -------------------------------------------------------------------------------- /Sources/Frameworks/libjxl.xcframework/macos-arm64_x86_64/Headers/jxl/encode_cxx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libjxl.xcframework/macos-arm64_x86_64/Headers/jxl/encode_cxx.h -------------------------------------------------------------------------------- /Sources/Frameworks/libjxl.xcframework/macos-arm64_x86_64/Headers/jxl/jxl_cms_export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libjxl.xcframework/macos-arm64_x86_64/Headers/jxl/jxl_cms_export.h -------------------------------------------------------------------------------- /Sources/Frameworks/libjxl.xcframework/macos-arm64_x86_64/Headers/jxl/jxl_export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libjxl.xcframework/macos-arm64_x86_64/Headers/jxl/jxl_export.h -------------------------------------------------------------------------------- /Sources/Frameworks/libjxl.xcframework/macos-arm64_x86_64/Headers/jxl/jxl_threads_export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libjxl.xcframework/macos-arm64_x86_64/Headers/jxl/jxl_threads_export.h -------------------------------------------------------------------------------- /Sources/Frameworks/libjxl.xcframework/macos-arm64_x86_64/Headers/jxl/memory_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libjxl.xcframework/macos-arm64_x86_64/Headers/jxl/memory_manager.h -------------------------------------------------------------------------------- /Sources/Frameworks/libjxl.xcframework/macos-arm64_x86_64/Headers/jxl/parallel_runner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libjxl.xcframework/macos-arm64_x86_64/Headers/jxl/parallel_runner.h -------------------------------------------------------------------------------- /Sources/Frameworks/libjxl.xcframework/macos-arm64_x86_64/Headers/jxl/resizable_parallel_runner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libjxl.xcframework/macos-arm64_x86_64/Headers/jxl/resizable_parallel_runner.h -------------------------------------------------------------------------------- /Sources/Frameworks/libjxl.xcframework/macos-arm64_x86_64/Headers/jxl/resizable_parallel_runner_cxx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libjxl.xcframework/macos-arm64_x86_64/Headers/jxl/resizable_parallel_runner_cxx.h -------------------------------------------------------------------------------- /Sources/Frameworks/libjxl.xcframework/macos-arm64_x86_64/Headers/jxl/stats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libjxl.xcframework/macos-arm64_x86_64/Headers/jxl/stats.h -------------------------------------------------------------------------------- /Sources/Frameworks/libjxl.xcframework/macos-arm64_x86_64/Headers/jxl/thread_parallel_runner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libjxl.xcframework/macos-arm64_x86_64/Headers/jxl/thread_parallel_runner.h -------------------------------------------------------------------------------- /Sources/Frameworks/libjxl.xcframework/macos-arm64_x86_64/Headers/jxl/thread_parallel_runner_cxx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libjxl.xcframework/macos-arm64_x86_64/Headers/jxl/thread_parallel_runner_cxx.h -------------------------------------------------------------------------------- /Sources/Frameworks/libjxl.xcframework/macos-arm64_x86_64/Headers/jxl/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libjxl.xcframework/macos-arm64_x86_64/Headers/jxl/types.h -------------------------------------------------------------------------------- /Sources/Frameworks/libjxl.xcframework/macos-arm64_x86_64/Headers/jxl/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libjxl.xcframework/macos-arm64_x86_64/Headers/jxl/version.h -------------------------------------------------------------------------------- /Sources/Frameworks/libjxl.xcframework/macos-arm64_x86_64/libjxl.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libjxl.xcframework/macos-arm64_x86_64/libjxl.a -------------------------------------------------------------------------------- /Sources/Frameworks/libjxl_cms.xcframework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libjxl_cms.xcframework/Info.plist -------------------------------------------------------------------------------- /Sources/Frameworks/libjxl_cms.xcframework/ios-arm64/Headers/libjxl_cms.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Stub 3 | */ 4 | -------------------------------------------------------------------------------- /Sources/Frameworks/libjxl_cms.xcframework/ios-arm64/libjxl_cms.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libjxl_cms.xcframework/ios-arm64/libjxl_cms.a -------------------------------------------------------------------------------- /Sources/Frameworks/libjxl_cms.xcframework/ios-arm64_x86_64-simulator/Headers/libjxl_cms.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Stub 3 | */ 4 | -------------------------------------------------------------------------------- /Sources/Frameworks/libjxl_cms.xcframework/ios-arm64_x86_64-simulator/libjxl_cms.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libjxl_cms.xcframework/ios-arm64_x86_64-simulator/libjxl_cms.a -------------------------------------------------------------------------------- /Sources/Frameworks/libjxl_cms.xcframework/macos-arm64_x86_64/Headers/libjxl_cms.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Stub 3 | */ 4 | -------------------------------------------------------------------------------- /Sources/Frameworks/libjxl_cms.xcframework/macos-arm64_x86_64/libjxl_cms.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libjxl_cms.xcframework/macos-arm64_x86_64/libjxl_cms.a -------------------------------------------------------------------------------- /Sources/Frameworks/libjxl_threads.xcframework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libjxl_threads.xcframework/Info.plist -------------------------------------------------------------------------------- /Sources/Frameworks/libjxl_threads.xcframework/ios-arm64/Headers/libjxl_threads_stub.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Stub 3 | */ 4 | -------------------------------------------------------------------------------- /Sources/Frameworks/libjxl_threads.xcframework/ios-arm64/libjxl_threads.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libjxl_threads.xcframework/ios-arm64/libjxl_threads.a -------------------------------------------------------------------------------- /Sources/Frameworks/libjxl_threads.xcframework/ios-arm64_x86_64-simulator/Headers/libjxl_threads_stub.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Stub 3 | */ 4 | -------------------------------------------------------------------------------- /Sources/Frameworks/libjxl_threads.xcframework/ios-arm64_x86_64-simulator/libjxl_threads.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libjxl_threads.xcframework/ios-arm64_x86_64-simulator/libjxl_threads.a -------------------------------------------------------------------------------- /Sources/Frameworks/libjxl_threads.xcframework/macos-arm64_x86_64/Headers/libjxl_threads_stub.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Stub 3 | */ 4 | -------------------------------------------------------------------------------- /Sources/Frameworks/libjxl_threads.xcframework/macos-arm64_x86_64/libjxl_threads.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libjxl_threads.xcframework/macos-arm64_x86_64/libjxl_threads.a -------------------------------------------------------------------------------- /Sources/Frameworks/libskcms.xcframework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libskcms.xcframework/Info.plist -------------------------------------------------------------------------------- /Sources/Frameworks/libskcms.xcframework/ios-arm64/Headers/libskcms.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Stub 3 | */ 4 | -------------------------------------------------------------------------------- /Sources/Frameworks/libskcms.xcframework/ios-arm64/libskcms.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libskcms.xcframework/ios-arm64/libskcms.a -------------------------------------------------------------------------------- /Sources/Frameworks/libskcms.xcframework/ios-arm64_x86_64-simulator/Headers/libskcms.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Stub 3 | */ 4 | -------------------------------------------------------------------------------- /Sources/Frameworks/libskcms.xcframework/ios-arm64_x86_64-simulator/libskcms.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libskcms.xcframework/ios-arm64_x86_64-simulator/libskcms.a -------------------------------------------------------------------------------- /Sources/Frameworks/libskcms.xcframework/macos-arm64_x86_64/Headers/libskcms.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Stub 3 | */ 4 | -------------------------------------------------------------------------------- /Sources/Frameworks/libskcms.xcframework/macos-arm64_x86_64/libskcms.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Frameworks/libskcms.xcframework/macos-arm64_x86_64/libskcms.a -------------------------------------------------------------------------------- /Sources/JxlCoder/JXLAnimatedDecoder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/JxlCoder/JXLAnimatedDecoder.swift -------------------------------------------------------------------------------- /Sources/JxlCoder/JXLAnimatedEncoder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/JxlCoder/JXLAnimatedEncoder.swift -------------------------------------------------------------------------------- /Sources/JxlCoder/JXLCoder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/JxlCoder/JXLCoder.swift -------------------------------------------------------------------------------- /Sources/JxlCoder/JXLSupport.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/JxlCoder/JXLSupport.swift -------------------------------------------------------------------------------- /Sources/JxlCoder/JpegLiEncoder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/JxlCoder/JpegLiEncoder.swift -------------------------------------------------------------------------------- /Sources/Module/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Module/Info.plist -------------------------------------------------------------------------------- /Sources/Module/JXLCoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Module/JXLCoder.h -------------------------------------------------------------------------------- /Sources/Module/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/Module/module.modulemap -------------------------------------------------------------------------------- /Sources/jxlc/CJpegXLAnimatedDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/jxlc/CJpegXLAnimatedDecoder.h -------------------------------------------------------------------------------- /Sources/jxlc/CJpegXLAnimatedDecoder.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/jxlc/CJpegXLAnimatedDecoder.mm -------------------------------------------------------------------------------- /Sources/jxlc/CJpegXLAnimatedEncoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/jxlc/CJpegXLAnimatedEncoder.h -------------------------------------------------------------------------------- /Sources/jxlc/CJpegXLAnimatedEncoder.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/jxlc/CJpegXLAnimatedEncoder.mm -------------------------------------------------------------------------------- /Sources/jxlc/JPEGLIEncoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/jxlc/JPEGLIEncoder.cpp -------------------------------------------------------------------------------- /Sources/jxlc/JPEGLiEncoder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/jxlc/JPEGLiEncoder.hpp -------------------------------------------------------------------------------- /Sources/jxlc/JXLSystemImage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/jxlc/JXLSystemImage.hpp -------------------------------------------------------------------------------- /Sources/jxlc/JXLSystemImage.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/jxlc/JXLSystemImage.mm -------------------------------------------------------------------------------- /Sources/jxlc/JxlAnimatedDecoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/jxlc/JxlAnimatedDecoder.cpp -------------------------------------------------------------------------------- /Sources/jxlc/JxlAnimatedDecoder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/jxlc/JxlAnimatedDecoder.hpp -------------------------------------------------------------------------------- /Sources/jxlc/JxlAnimatedEncoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/jxlc/JxlAnimatedEncoder.cpp -------------------------------------------------------------------------------- /Sources/jxlc/JxlAnimatedEncoder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/jxlc/JxlAnimatedEncoder.hpp -------------------------------------------------------------------------------- /Sources/jxlc/JxlConstruction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/jxlc/JxlConstruction.h -------------------------------------------------------------------------------- /Sources/jxlc/JxlConstruction.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/jxlc/JxlConstruction.mm -------------------------------------------------------------------------------- /Sources/jxlc/JxlDefinitions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/jxlc/JxlDefinitions.h -------------------------------------------------------------------------------- /Sources/jxlc/JxlInternalCoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/jxlc/JxlInternalCoder.h -------------------------------------------------------------------------------- /Sources/jxlc/JxlInternalCoder.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/jxlc/JxlInternalCoder.mm -------------------------------------------------------------------------------- /Sources/jxlc/JxlJpegInverse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/jxlc/JxlJpegInverse.hpp -------------------------------------------------------------------------------- /Sources/jxlc/JxlJpegLiEncoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/jxlc/JxlJpegLiEncoder.h -------------------------------------------------------------------------------- /Sources/jxlc/JxlJpegLiEncoder.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/jxlc/JxlJpegLiEncoder.mm -------------------------------------------------------------------------------- /Sources/jxlc/JxlTranscode.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/jxlc/JxlTranscode.hpp -------------------------------------------------------------------------------- /Sources/jxlc/JxlWorker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/jxlc/JxlWorker.cpp -------------------------------------------------------------------------------- /Sources/jxlc/JxlWorker.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/jxlc/JxlWorker.hpp -------------------------------------------------------------------------------- /Sources/jxlc/RgbRgbaConverter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/jxlc/RgbRgbaConverter.hpp -------------------------------------------------------------------------------- /Sources/jxlc/RgbRgbaConverter.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/jxlc/RgbRgbaConverter.mm -------------------------------------------------------------------------------- /Sources/jxlc/RgbaScaler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/jxlc/RgbaScaler.h -------------------------------------------------------------------------------- /Sources/jxlc/RgbaScaler.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/jxlc/RgbaScaler.mm -------------------------------------------------------------------------------- /Sources/jxlc/algo/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/jxlc/algo/common.h -------------------------------------------------------------------------------- /Sources/jxlc/algo/concurrency.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/jxlc/algo/concurrency.hpp -------------------------------------------------------------------------------- /Sources/jxlc/algo/fast_math-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/jxlc/algo/fast_math-inl.h -------------------------------------------------------------------------------- /Sources/jxlc/algo/math-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/jxlc/algo/math-inl.h -------------------------------------------------------------------------------- /Sources/jxlc/algo/rational_polynomial-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/jxlc/algo/rational_polynomial-inl.h -------------------------------------------------------------------------------- /Sources/jxlc/algo/sampler-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/jxlc/algo/sampler-inl.h -------------------------------------------------------------------------------- /Sources/jxlc/algo/sampler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/jxlc/algo/sampler.h -------------------------------------------------------------------------------- /Sources/jxlc/algo/sleef-inl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/jxlc/algo/sleef-inl.cpp -------------------------------------------------------------------------------- /Sources/jxlc/algo/sleef-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/jxlc/algo/sleef-inl.h -------------------------------------------------------------------------------- /Sources/jxlc/half.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/jxlc/half.hpp -------------------------------------------------------------------------------- /Sources/jxlc/include/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder-swift/HEAD/Sources/jxlc/include/module.modulemap --------------------------------------------------------------------------------