@@ -235,7 +235,7 @@ - (nullable JXLSystemImage *)decode:(nonnull NSInputStream *)inputStream
235
235
236
236
std::vector<uint8_t > iccProfile;
237
237
size_t xSize, ySize;
238
- bool useFloats ;
238
+ bool use16BitImage ;
239
239
int depth;
240
240
std::vector<uint8_t > outputData;
241
241
int components;
@@ -248,14 +248,14 @@ - (nullable JXLSystemImage *)decode:(nonnull NSInputStream *)inputStream
248
248
case kR8 :
249
249
pixelFormat = r8;
250
250
break ;
251
- case kFloat16 :
252
- pixelFormat = float16 ;
251
+ case kR16 :
252
+ pixelFormat = r16 ;
253
253
break ;
254
254
}
255
255
auto decoded = DecodeJpegXlOneShot (imageData.data (), imageData.size (),
256
256
&outputData, &xSize, &ySize,
257
257
&iccProfile, &depth, &components,
258
- &useFloats , &jxlExposedOrientation,
258
+ &use16BitImage , &jxlExposedOrientation,
259
259
pixelFormat);
260
260
if (!decoded) {
261
261
*error = [[NSError alloc ] initWithDomain: @" JXLCoder"
@@ -277,7 +277,7 @@ - (nullable JXLSystemImage *)decode:(nonnull NSInputStream *)inputStream
277
277
if (rescale.width > 0 && rescale.height > 0 ) {
278
278
auto scaleResult = [RgbaScaler scaleData: outputData width: (int )xSize height: (int )ySize
279
279
newWidth: (int )rescale.width newHeight: (int )rescale.height
280
- components: components pixelFormat: useFloats ? kF16 : kU8 ];
280
+ components: components pixelFormat: use16BitImage ? kF16 : kU8 ];
281
281
if (!scaleResult) {
282
282
*error = [[NSError alloc ] initWithDomain: @" JXLCoder"
283
283
code: 500
@@ -309,11 +309,11 @@ - (nullable JXLSystemImage *)decode:(nonnull NSInputStream *)inputStream
309
309
}
310
310
}
311
311
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 ));
313
313
314
314
int flags;
315
- if (useFloats ) {
316
- flags = (int )kCGBitmapByteOrder16Host | ( int ) kCGBitmapFloatComponents ;
315
+ if (use16BitImage ) {
316
+ flags = (int )kCGBitmapByteOrder16Host ;
317
317
if (components == 4 ) {
318
318
flags |= (int )kCGImageAlphaLast ;
319
319
} else {
@@ -343,7 +343,7 @@ - (nullable JXLSystemImage *)decode:(nonnull NSInputStream *)inputStream
343
343
return nullptr ;
344
344
}
345
345
346
- int bitsPerComponent = (useFloats ? sizeof (uint16_t ) : sizeof (uint8_t )) * 8 ;
346
+ int bitsPerComponent = (use16BitImage ? sizeof (uint16_t ) : sizeof (uint8_t )) * 8 ;
347
347
int bitsPerPixel = bitsPerComponent*components;
348
348
349
349
CGImageRef imageRef = CGImageCreate (xSize, ySize, bitsPerComponent,
0 commit comments