Skip to content

Commit 20b7f84

Browse files
committed
updated version
1 parent feda1cc commit 20b7f84

6 files changed

+26
-318
lines changed

JxlCoder.podspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'JxlCoder'
3-
s.version = '1.7.3'
3+
s.version = '1.8.0'
44
s.summary = 'JXL coder for iOS and MacOS'
55
s.description = 'Provides support for JXL files in iOS and MacOS'
66
s.homepage = 'https://github.com/awxkee/jxl-coder-swift'

Sources/jxlc/JXLSystemImage.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ typedef NS_ENUM(NSInteger, JXLCompressionOption) {
5656
typedef NS_ENUM(NSInteger, JXLPreferredPixelFormat) {
5757
kOptimal NS_SWIFT_NAME(optimal),
5858
kR8 NS_SWIFT_NAME(r8),
59-
kFloat16 NS_SWIFT_NAME(float16),
59+
kR16 NS_SWIFT_NAME(r16),
6060
};
6161

6262
typedef NS_ENUM(NSInteger, JXLEncoderDecodingSpeed) {

Sources/jxlc/JxlDefinitions.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ enum JxlCompressionOption {
3939
enum JxlDecodingPixelFormat {
4040
optimal = 1,
4141
r8 = 2,
42-
float16 = 3
42+
r16 = 3
4343
};
4444

4545
enum JxlEncodingPixelFormat {

Sources/jxlc/JxlInternalCoder.mm

+9-9
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ - (nullable JXLSystemImage *)decode:(nonnull NSInputStream *)inputStream
235235

236236
std::vector<uint8_t> iccProfile;
237237
size_t xSize, ySize;
238-
bool useFloats;
238+
bool use16BitImage;
239239
int depth;
240240
std::vector<uint8_t> outputData;
241241
int components;
@@ -248,14 +248,14 @@ - (nullable JXLSystemImage *)decode:(nonnull NSInputStream *)inputStream
248248
case kR8:
249249
pixelFormat = r8;
250250
break;
251-
case kFloat16:
252-
pixelFormat = float16;
251+
case kR16:
252+
pixelFormat = r16;
253253
break;
254254
}
255255
auto decoded = DecodeJpegXlOneShot(imageData.data(), imageData.size(),
256256
&outputData, &xSize, &ySize,
257257
&iccProfile, &depth, &components,
258-
&useFloats, &jxlExposedOrientation,
258+
&use16BitImage, &jxlExposedOrientation,
259259
pixelFormat);
260260
if (!decoded) {
261261
*error = [[NSError alloc] initWithDomain:@"JXLCoder"
@@ -277,7 +277,7 @@ - (nullable JXLSystemImage *)decode:(nonnull NSInputStream *)inputStream
277277
if (rescale.width > 0 && rescale.height > 0) {
278278
auto scaleResult = [RgbaScaler scaleData:outputData width:(int)xSize height:(int)ySize
279279
newWidth:(int)rescale.width newHeight:(int)rescale.height
280-
components:components pixelFormat:useFloats ? kF16 : kU8];
280+
components:components pixelFormat:use16BitImage ? kF16 : kU8];
281281
if (!scaleResult) {
282282
*error = [[NSError alloc] initWithDomain:@"JXLCoder"
283283
code:500
@@ -309,11 +309,11 @@ - (nullable JXLSystemImage *)decode:(nonnull NSInputStream *)inputStream
309309
}
310310
}
311311

312-
int stride = components*(int)xSize * (int)(useFloats ? sizeof(uint16_t) : sizeof(uint8_t));
312+
int stride = components*(int)xSize * (int)(use16BitImage ? sizeof(uint16_t) : sizeof(uint8_t));
313313

314314
int flags;
315-
if (useFloats) {
316-
flags = (int)kCGBitmapByteOrder16Host | (int)kCGBitmapFloatComponents;
315+
if (use16BitImage) {
316+
flags = (int)kCGBitmapByteOrder16Host;
317317
if (components == 4) {
318318
flags |= (int)kCGImageAlphaLast;
319319
} else {
@@ -343,7 +343,7 @@ - (nullable JXLSystemImage *)decode:(nonnull NSInputStream *)inputStream
343343
return nullptr;
344344
}
345345

346-
int bitsPerComponent = (useFloats ? sizeof(uint16_t) : sizeof(uint8_t)) * 8;
346+
int bitsPerComponent = (use16BitImage ? sizeof(uint16_t) : sizeof(uint8_t)) * 8;
347347
int bitsPerPixel = bitsPerComponent*components;
348348

349349
CGImageRef imageRef = CGImageCreate(xSize, ySize, bitsPerComponent,

Sources/jxlc/JxlWorker.cpp

+5-5
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,8 @@ bool DecodeJpegXlOneShot(const uint8_t *jxl, size_t size,
6868
if (pixelFormat == optimal) {
6969
format = {4, JXL_TYPE_UINT8, JXL_NATIVE_ENDIAN, 0};
7070
} else {
71-
if (pixelFormat == float16) {
72-
format = {4, JXL_TYPE_FLOAT16, JXL_NATIVE_ENDIAN, 0};
71+
if (pixelFormat == r16) {
72+
format = {4, JXL_TYPE_UINT16, JXL_NATIVE_ENDIAN, 0};
7373
} else if (pixelFormat == r8) {
7474
format = {4, JXL_TYPE_UINT8, JXL_NATIVE_ENDIAN, 0};
7575
}
@@ -105,11 +105,11 @@ bool DecodeJpegXlOneShot(const uint8_t *jxl, size_t size,
105105
if (bitDepth > 8 && pixelFormat == optimal) {
106106
*useFloats = true;
107107
hdrImage = true;
108-
format = { static_cast<uint32_t>(baseComponents), JXL_TYPE_FLOAT16, JXL_NATIVE_ENDIAN, 0 };
109-
} else if (pixelFormat == float16) {
108+
format = { static_cast<uint32_t>(baseComponents), JXL_TYPE_UINT16, JXL_NATIVE_ENDIAN, 0 };
109+
} else if (pixelFormat == r16) {
110110
*useFloats = true;
111111
hdrImage = true;
112-
format = { static_cast<uint32_t>(baseComponents), JXL_TYPE_FLOAT16, JXL_NATIVE_ENDIAN, 0 };
112+
format = { static_cast<uint32_t>(baseComponents), JXL_TYPE_UINT16, JXL_NATIVE_ENDIAN, 0 };
113113
} else {
114114
if (pixelFormat == r8) {
115115
*depth = 8;

0 commit comments

Comments
 (0)