Skip to content

Commit feda1cc

Browse files
committed
removed outdated scaler
1 parent a084f91 commit feda1cc

10 files changed

+794
-1544
lines changed

Sources/JxlCoder/JXLCoder.swift

+6-9
Original file line numberDiff line numberDiff line change
@@ -57,9 +57,8 @@ public class JXLCoder {
5757
public static func decode(srcStream: InputStream,
5858
rescale: CGSize = .zero,
5959
scale: Int = 1,
60-
pixelFormat: JXLPreferredPixelFormat = .optimal,
61-
sampler: JxlSampler = .hann) throws -> JXLPlatformImage {
62-
return try shared.decode(srcStream, rescale: rescale, pixelFormat: pixelFormat, sampler: sampler, scale: Int32(scale))
60+
pixelFormat: JXLPreferredPixelFormat = .optimal) throws -> JXLPlatformImage {
61+
return try shared.decode(srcStream, rescale: rescale, pixelFormat: pixelFormat, scale: Int32(scale))
6362
}
6463

6564
/***
@@ -70,13 +69,12 @@ public class JXLCoder {
7069
public static func decode(url: URL,
7170
rescale: CGSize = .zero,
7271
scale: Int = 1,
73-
pixelFormat: JXLPreferredPixelFormat = .optimal,
74-
sampler: JxlSampler = .lanczos) throws -> JXLPlatformImage {
72+
pixelFormat: JXLPreferredPixelFormat = .optimal) throws -> JXLPlatformImage {
7573
guard let srcStream = InputStream(url: url) else {
7674
throw NSError(domain: "JXLCoder", code: 500,
7775
userInfo: [NSLocalizedDescriptionKey: "JXLCoder cannot open provided URL"])
7876
}
79-
return try shared.decode(srcStream, rescale: rescale, pixelFormat: pixelFormat, sampler: sampler, scale: Int32(scale))
77+
return try shared.decode(srcStream, rescale: rescale, pixelFormat: pixelFormat, scale: Int32(scale))
8078
}
8179

8280
/***
@@ -87,10 +85,9 @@ public class JXLCoder {
8785
public static func decode(data: Data,
8886
rescale: CGSize = .zero,
8987
scale: Int = 1,
90-
pixelFormat: JXLPreferredPixelFormat = .optimal,
91-
sampler: JxlSampler = .lanczos) throws -> JXLPlatformImage {
88+
pixelFormat: JXLPreferredPixelFormat = .optimal) throws -> JXLPlatformImage {
9289
let srcStream = InputStream(data: data)
93-
return try shared.decode(srcStream, rescale: rescale, pixelFormat: pixelFormat, sampler: sampler, scale: Int32(scale))
90+
return try shared.decode(srcStream, rescale: rescale, pixelFormat: pixelFormat, scale: Int32(scale))
9491
}
9592

9693
/***

Sources/jxlc/JXLSystemImage.hpp

-12
Original file line numberDiff line numberDiff line change
@@ -59,18 +59,6 @@ typedef NS_ENUM(NSInteger, JXLPreferredPixelFormat) {
5959
kFloat16 NS_SWIFT_NAME(float16),
6060
};
6161

62-
typedef NS_ENUM(NSInteger, JxlSampler) {
63-
kNearestNeighbor NS_SWIFT_NAME(nearestNeighbor),
64-
kBilinear NS_SWIFT_NAME(bilinear),
65-
kCubic NS_SWIFT_NAME(cubic),
66-
kBSpline NS_SWIFT_NAME(bSpline),
67-
kMitchell NS_SWIFT_NAME(mitchell),
68-
kLanczos NS_SWIFT_NAME(lanczos),
69-
kCatmullRom NS_SWIFT_NAME(catmullRom),
70-
kHermite NS_SWIFT_NAME(hermite),
71-
kHann NS_SWIFT_NAME(hann)
72-
};
73-
7462
typedef NS_ENUM(NSInteger, JXLEncoderDecodingSpeed) {
7563
kSlowest NS_SWIFT_NAME(slowest) = 0,
7664
kSlow NS_SWIFT_NAME(slow) = 1,

Sources/jxlc/JxlInternalCoder.h

-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@
3535
- (nullable JXLSystemImage *)decode:(nonnull NSInputStream *)inputStream
3636
rescale:(CGSize)rescale
3737
pixelFormat:(JXLPreferredPixelFormat)preferredPixelFormat
38-
sampler:(JxlSampler)sampler
3938
scale:(int)scale
4039
error:(NSError *_Nullable * _Nullable)error;
4140
- (CGSize)getSize:(nonnull NSInputStream *)inputStream error:(NSError *_Nullable * _Nullable)error;

Sources/jxlc/JxlInternalCoder.mm

+1-34
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,6 @@ - (CGSize)getSize:(nonnull NSInputStream *)inputStream error:(NSError *_Nullable
189189
- (nullable JXLSystemImage *)decode:(nonnull NSInputStream *)inputStream
190190
rescale:(CGSize)rescale
191191
pixelFormat:(JXLPreferredPixelFormat)preferredPixelFormat
192-
sampler:(JxlSampler)sampler
193192
scale:(int)scale
194193
error:(NSError *_Nullable * _Nullable)error {
195194
try {
@@ -276,41 +275,9 @@ - (nullable JXLSystemImage *)decode:(nonnull NSInputStream *)inputStream
276275
}
277276

278277
if (rescale.width > 0 && rescale.height > 0) {
279-
XSampler xSampler = bilinear;
280-
281-
switch (sampler) {
282-
case kNearestNeighbor:
283-
xSampler = nearest;
284-
break;
285-
case kBilinear:
286-
xSampler = bilinear;
287-
break;
288-
case kCubic:
289-
xSampler = cubic;
290-
break;
291-
case kMitchell:
292-
xSampler = mitchell;
293-
break;
294-
case kLanczos:
295-
xSampler = lanczos;
296-
break;
297-
case kCatmullRom:
298-
xSampler = catmullRom;
299-
break;
300-
case kHermite:
301-
xSampler = hermite;
302-
break;
303-
case kBSpline:
304-
xSampler = bSpline;
305-
break;
306-
case kHann:
307-
xSampler = hann;
308-
break;
309-
}
310-
311278
auto scaleResult = [RgbaScaler scaleData:outputData width:(int)xSize height:(int)ySize
312279
newWidth:(int)rescale.width newHeight:(int)rescale.height
313-
components:components pixelFormat:useFloats ? kF16 : kU8 sampler:xSampler];
280+
components:components pixelFormat:useFloats ? kF16 : kU8];
314281
if (!scaleResult) {
315282
*error = [[NSError alloc] initWithDomain:@"JXLCoder"
316283
code:500

Sources/jxlc/RgbaScaler.h

+1-2
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@
2929
#ifdef __cplusplus
3030

3131
#import <vector>
32-
#import "XScaler.hpp"
3332

3433
typedef NS_ENUM(NSInteger, JxlIPixelFormat) {
3534
kU8 NS_SWIFT_NAME(uniform8),
@@ -47,7 +46,7 @@ typedef NS_ENUM(NSInteger, JxlIPixelFormat) {
4746
* @param pixelFormat Pixel Format of the image
4847
* @return destination
4948
*/
50-
+(bool) scaleData:(std::vector<uint8_t>&)src width:(int)width height:(int)height newWidth:(int)newWidth newHeight:(int)newHeight components:(int)components pixelFormat:(JxlIPixelFormat)pixelFormat sampler:(XSampler)sampler;
49+
+(bool) scaleData:(std::vector<uint8_t>&)src width:(int)width height:(int)height newWidth:(int)newWidth newHeight:(int)newHeight components:(int)components pixelFormat:(JxlIPixelFormat)pixelFormat;
5150
@end
5251

5352
#endif

0 commit comments

Comments
 (0)