@img/sharp-libvips-dev-wasm32 1.2.1 → 1.2.2-rc.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (93) hide show
  1. package/include/aom/aom_decoder.h +1 -1
  2. package/include/aom/aom_encoder.h +2 -0
  3. package/include/aom/aomcx.h +106 -25
  4. package/include/ffi.h +3 -3
  5. package/include/ffitarget.h +17 -0
  6. package/include/glib-2.0/gio/gdbuserror.h +9 -8
  7. package/include/glib-2.0/gio/ginetaddress.h +12 -0
  8. package/include/glib-2.0/gio/gioenums.h +9 -2
  9. package/include/glib-2.0/glib/gstring.h +2 -2
  10. package/include/glib-2.0/glib/gunicode.h +1 -1
  11. package/include/glib-2.0/gobject/glib-types.h +1 -1
  12. package/include/glib-2.0/gobject/gparam.h +1 -1
  13. package/include/glib-2.0/gobject/gvalue.h +78 -35
  14. package/include/hwy/abort.h +2 -19
  15. package/include/hwy/aligned_allocator.h +11 -7
  16. package/include/hwy/auto_tune.h +504 -0
  17. package/include/hwy/base.h +425 -104
  18. package/include/hwy/cache_control.h +16 -0
  19. package/include/hwy/detect_compiler_arch.h +32 -1
  20. package/include/hwy/detect_targets.h +251 -67
  21. package/include/hwy/foreach_target.h +35 -0
  22. package/include/hwy/highway.h +185 -76
  23. package/include/hwy/nanobenchmark.h +1 -19
  24. package/include/hwy/ops/arm_neon-inl.h +969 -458
  25. package/include/hwy/ops/arm_sve-inl.h +1137 -359
  26. package/include/hwy/ops/emu128-inl.h +97 -11
  27. package/include/hwy/ops/generic_ops-inl.h +1222 -34
  28. package/include/hwy/ops/loongarch_lasx-inl.h +4664 -0
  29. package/include/hwy/ops/loongarch_lsx-inl.h +5933 -0
  30. package/include/hwy/ops/ppc_vsx-inl.h +306 -126
  31. package/include/hwy/ops/rvv-inl.h +546 -51
  32. package/include/hwy/ops/scalar-inl.h +77 -22
  33. package/include/hwy/ops/set_macros-inl.h +133 -17
  34. package/include/hwy/ops/shared-inl.h +50 -10
  35. package/include/hwy/ops/wasm_128-inl.h +137 -92
  36. package/include/hwy/ops/x86_128-inl.h +773 -214
  37. package/include/hwy/ops/x86_256-inl.h +712 -255
  38. package/include/hwy/ops/x86_512-inl.h +429 -753
  39. package/include/hwy/ops/x86_avx3-inl.h +501 -0
  40. package/include/hwy/per_target.h +2 -1
  41. package/include/hwy/profiler.h +622 -486
  42. package/include/hwy/targets.h +62 -20
  43. package/include/hwy/timer-inl.h +8 -160
  44. package/include/hwy/timer.h +170 -3
  45. package/include/hwy/x86_cpuid.h +81 -0
  46. package/include/libheif/heif_cxx.h +25 -5
  47. package/include/libheif/heif_regions.h +5 -5
  48. package/include/libheif/heif_version.h +2 -2
  49. package/include/vips/connection.h +4 -4
  50. package/include/vips/version.h +4 -4
  51. package/include/zlib.h +3 -3
  52. package/lib/glib-2.0/include/glibconfig.h +2 -2
  53. package/lib/libaom.a +0 -0
  54. package/lib/libcgif.a +0 -0
  55. package/lib/libexif.a +0 -0
  56. package/lib/libexpat.a +0 -0
  57. package/lib/libffi.a +0 -0
  58. package/lib/libgio-2.0.a +0 -0
  59. package/lib/libglib-2.0.a +0 -0
  60. package/lib/libgmodule-2.0.a +0 -0
  61. package/lib/libgobject-2.0.a +0 -0
  62. package/lib/libgthread-2.0.a +0 -0
  63. package/lib/libheif.a +0 -0
  64. package/lib/libhwy.a +0 -0
  65. package/lib/libimagequant.a +0 -0
  66. package/lib/libjpeg.a +0 -0
  67. package/lib/liblcms2.a +0 -0
  68. package/lib/libresvg.a +0 -0
  69. package/lib/libsharpyuv.a +0 -0
  70. package/lib/libspng.a +0 -0
  71. package/lib/libtiff.a +0 -0
  72. package/lib/libvips-cpp.a +0 -0
  73. package/lib/libvips.a +0 -0
  74. package/lib/libwebp.a +0 -0
  75. package/lib/libwebpdemux.a +0 -0
  76. package/lib/libwebpmux.a +0 -0
  77. package/lib/libz.a +0 -0
  78. package/lib/pkgconfig/aom.pc +2 -2
  79. package/lib/pkgconfig/gio-2.0.pc +1 -1
  80. package/lib/pkgconfig/glib-2.0.pc +1 -1
  81. package/lib/pkgconfig/gmodule-2.0.pc +1 -1
  82. package/lib/pkgconfig/gmodule-export-2.0.pc +1 -1
  83. package/lib/pkgconfig/gmodule-no-export-2.0.pc +1 -1
  84. package/lib/pkgconfig/gobject-2.0.pc +1 -1
  85. package/lib/pkgconfig/gthread-2.0.pc +1 -1
  86. package/lib/pkgconfig/libffi.pc +1 -1
  87. package/lib/pkgconfig/libheif.pc +1 -1
  88. package/lib/pkgconfig/libhwy.pc +1 -1
  89. package/lib/pkgconfig/vips-cpp.pc +1 -1
  90. package/lib/pkgconfig/vips.pc +1 -1
  91. package/lib/pkgconfig/zlib.pc +1 -0
  92. package/package.json +1 -1
  93. package/versions.json +8 -8
@@ -43,7 +43,7 @@ typedef struct heif_region_item heif_region_item;
43
43
  enum heif_region_type
44
44
  {
45
45
  /**
46
- * Point gemetry.
46
+ * Point geometry.
47
47
  *
48
48
  * The region is represented by a single point.
49
49
  */
@@ -174,7 +174,7 @@ heif_error heif_context_get_region_item(const heif_context* context,
174
174
  * Get the item identifier for a region item.
175
175
  *
176
176
  * @param region_item the region item to query
177
- * @return the region item identifier (or -1 if the region_item is null)
177
+ * @return the region item identifier (or 0 if the region_item is null)
178
178
  */
179
179
  LIBHEIF_API
180
180
  heif_item_id heif_region_item_get_id(heif_region_item* region_item);
@@ -420,7 +420,7 @@ int heif_region_get_polygon_num_points(const heif_region* region);
420
420
  * The points are returned as pairs of X,Y coordinates, in the order X<sub>1</sub>,
421
421
  * Y<sub>1</sub>, X<sub>2</sub>, Y<sub>2</sub>, ..., X<sub>n</sub>, Y<sub>n</sub>.
422
422
  *
423
- * @param region the region to equery, which must be of type #heif_region_type_polygon
423
+ * @param region the region to query, which must be of type #heif_region_type_polygon
424
424
  * @param out_pts_array the array to return the points in, which must have twice as many entries as there are points
425
425
  * in the polygon.
426
426
  * @return heif_error_ok on success, or an error value indicating the problem on failure
@@ -442,7 +442,7 @@ heif_error heif_region_get_polygon_points(const heif_region* region,
442
442
  * The points are returned as pairs of X,Y coordinates, in the order X<sub>1</sub>,
443
443
  * Y<sub>1</sub>, X<sub>2</sub>, Y<sub>2</sub>, ..., X<sub>n</sub>, Y<sub>n</sub>.
444
444
  *
445
- * @param region the region to equery, which must be of type #heif_region_type_polygon
445
+ * @param region the region to query, which must be of type #heif_region_type_polygon
446
446
  * @param image_id the identifier for the image to transform / scale the region to
447
447
  * @param out_pts_array the array to return the points in, which must have twice as many entries as there are points
448
448
  * in the polygon.
@@ -484,7 +484,7 @@ int heif_region_get_polyline_num_points(const heif_region* region);
484
484
  * }
485
485
  * @endcode
486
486
  *
487
- * @param region the region to equery, which must be of type #heif_region_type_polyline
487
+ * @param region the region to query, which must be of type #heif_region_type_polyline
488
488
  * @param out_pts_array the array to return the points in, which must have twice as many entries as there are points
489
489
  * in the polyline.
490
490
  * @return heif_error_ok on success, or an error value indicating the problem on failure
@@ -28,10 +28,10 @@
28
28
  #define LIBHEIF_HEIF_VERSION_H
29
29
 
30
30
  /* Numeric representation of the version */
31
- #define LIBHEIF_NUMERIC_VERSION ((1<<24) | (20<<16) | (1<<8) | 0)
31
+ #define LIBHEIF_NUMERIC_VERSION ((1<<24) | (20<<16) | (2<<8) | 0)
32
32
 
33
33
  /* Version string */
34
- #define LIBHEIF_VERSION "1.20.1"
34
+ #define LIBHEIF_VERSION "1.20.2"
35
35
 
36
36
  #define LIBHEIF_PLUGIN_DIRECTORY "/src/build/target/lib/libheif"
37
37
 
@@ -321,6 +321,8 @@ typedef struct _VipsGInputStreamClass {
321
321
 
322
322
  } VipsGInputStreamClass;
323
323
 
324
+ VIPS_API
325
+ GType vips_g_input_stream_get_type(void);
324
326
  VIPS_API
325
327
  GInputStream *vips_g_input_stream_new_from_source(VipsSource *source);
326
328
 
@@ -343,10 +345,6 @@ GInputStream *vips_g_input_stream_new_from_source(VipsSource *source);
343
345
  (G_TYPE_INSTANCE_GET_CLASS((obj), \
344
346
  VIPS_TYPE_SOURCE_G_INPUT_STREAM, VipsSourceGInputStreamClass))
345
347
 
346
- /**
347
- * VipsSourceGInputStream: (copy-func g_object_ref)
348
- * (free-func g_object_unref)
349
- */
350
348
  typedef struct _VipsSourceGInputStream {
351
349
  VipsSource parent_instance;
352
350
 
@@ -366,6 +364,8 @@ typedef struct _VipsSourceGInputStreamClass {
366
364
 
367
365
  } VipsSourceGInputStreamClass;
368
366
 
367
+ VIPS_API
368
+ GType vips_source_g_input_stream_get_type(void);
369
369
  VIPS_API
370
370
  VipsSourceGInputStream *vips_source_g_input_stream_new(GInputStream *stream);
371
371
 
@@ -4,16 +4,16 @@
4
4
  #ifndef VIPS_VERSION_H
5
5
  #define VIPS_VERSION_H
6
6
 
7
- #define VIPS_VERSION "8.17.1"
8
- #define VIPS_VERSION_STRING "8.17.1"
7
+ #define VIPS_VERSION "8.17.2"
8
+ #define VIPS_VERSION_STRING "8.17.2"
9
9
  #define VIPS_MAJOR_VERSION (8)
10
10
  #define VIPS_MINOR_VERSION (17)
11
- #define VIPS_MICRO_VERSION (1)
11
+ #define VIPS_MICRO_VERSION (2)
12
12
 
13
13
  /* The ABI version, as used for library versioning.
14
14
  */
15
15
  #define VIPS_LIBRARY_CURRENT (61)
16
- #define VIPS_LIBRARY_REVISION (1)
16
+ #define VIPS_LIBRARY_REVISION (2)
17
17
  #define VIPS_LIBRARY_AGE (19)
18
18
 
19
19
  #define VIPS_CONFIG "enable debug: false\nenable deprecated: false\nenable modules: false\nenable C++ binding: true\nenable RAD load/save: true\nenable Analyze7 load: true\nenable PPM load/save: true\nenable GIF load: true\nFFTs with fftw: false\nSIMD support with libhwy: true\nICC profile support with lcms2: true\ndeflate compression with zlib: true\ntext rendering with pangocairo: false\nfont file support with fontconfig: false\nEXIF metadata support with libexif: true\nJPEG load/save with libjpeg: true\nJXL load/save with libjxl: false (dynamic module: false)\nJPEG2000 load/save with OpenJPEG: false\nPNG load/save with spng: true\nimage quantisation with imagequant: true\nTIFF load/save with libtiff-4: true\nimage pyramid save with libarchive: false\nHEIC/AVIF load/save with libheif: true (dynamic module: false)\nWebP load/save with libwebp: true\nPDF load with PDFium or Poppler: false (dynamic module: false)\nSVG load with librsvg or resvg: true (dynamic module: false)\nEXR load with OpenEXR: false\nWSI load with OpenSlide: false (dynamic module: false)\nMatlab load with Matio: false\nNIfTI load/save with libnifti: false\nFITS load/save with cfitsio: false\nGIF save with cgif: true\nMagick load/save with MagickCore: false (dynamic module: false)"
package/include/zlib.h CHANGED
@@ -49,11 +49,11 @@
49
49
  extern "C" {
50
50
  #endif
51
51
 
52
- #define ZLIBNG_VERSION "2.2.4"
53
- #define ZLIBNG_VERNUM 0x020204F0L /* MMNNRRSM: major minor revision status modified */
52
+ #define ZLIBNG_VERSION "2.2.5"
53
+ #define ZLIBNG_VERNUM 0x020205F0L /* MMNNRRSM: major minor revision status modified */
54
54
  #define ZLIBNG_VER_MAJOR 2
55
55
  #define ZLIBNG_VER_MINOR 2
56
- #define ZLIBNG_VER_REVISION 4
56
+ #define ZLIBNG_VER_REVISION 5
57
57
  #define ZLIBNG_VER_STATUS F /* 0=devel, 1-E=beta, F=Release (DEPRECATED) */
58
58
  #define ZLIBNG_VER_STATUSH 0xF /* Hex values: 0=devel, 1-E=beta, F=Release */
59
59
  #define ZLIBNG_VER_MODIFIED 0 /* non-zero if modified externally from zlib-ng */
@@ -114,8 +114,8 @@ typedef unsigned int guintptr;
114
114
  #define G_GUINTPTR_FORMAT "u"
115
115
 
116
116
  #define GLIB_MAJOR_VERSION 2
117
- #define GLIB_MINOR_VERSION 85
118
- #define GLIB_MICRO_VERSION 1
117
+ #define GLIB_MINOR_VERSION 86
118
+ #define GLIB_MICRO_VERSION 0
119
119
 
120
120
  #define G_OS_UNIX
121
121
  #define G_PLATFORM_WASM
package/lib/libaom.a CHANGED
Binary file
package/lib/libcgif.a CHANGED
Binary file
package/lib/libexif.a CHANGED
Binary file
package/lib/libexpat.a CHANGED
Binary file
package/lib/libffi.a CHANGED
Binary file
package/lib/libgio-2.0.a CHANGED
Binary file
package/lib/libglib-2.0.a CHANGED
Binary file
Binary file
Binary file
Binary file
package/lib/libheif.a CHANGED
Binary file
package/lib/libhwy.a CHANGED
Binary file
Binary file
package/lib/libjpeg.a CHANGED
Binary file
package/lib/liblcms2.a CHANGED
Binary file
package/lib/libresvg.a CHANGED
Binary file
package/lib/libsharpyuv.a CHANGED
Binary file
package/lib/libspng.a CHANGED
Binary file
package/lib/libtiff.a CHANGED
Binary file
package/lib/libvips-cpp.a CHANGED
Binary file
package/lib/libvips.a CHANGED
Binary file
package/lib/libwebp.a CHANGED
Binary file
Binary file
package/lib/libwebpmux.a CHANGED
Binary file
package/lib/libz.a CHANGED
Binary file
@@ -5,8 +5,8 @@ includedir=${prefix}/include
5
5
  libdir=${exec_prefix}/lib
6
6
 
7
7
  Name: aom
8
- Description: Alliance for Open Media AV1 codec library v3.12.1.
9
- Version: 3.12.1
8
+ Description: Alliance for Open Media AV1 codec library v3.13.1.
9
+ Version: 3.13.1
10
10
  Requires:
11
11
  Conflicts:
12
12
  Libs: -L${libdir} -laom
@@ -18,7 +18,7 @@ gsettings=${bindir}/gsettings
18
18
 
19
19
  Name: GIO
20
20
  Description: glib I/O library
21
- Version: 2.85.1
21
+ Version: 2.86.0
22
22
  Requires: glib-2.0, gobject-2.0, gmodule-no-export-2.0, zlib
23
23
  Libs: -L${libdir} -lgio-2.0
24
24
  Cflags: -I${includedir}
@@ -11,6 +11,6 @@ glib_valgrind_suppressions=${datadir}/glib-2.0/valgrind/glib.supp
11
11
 
12
12
  Name: GLib
13
13
  Description: C Utility Library
14
- Version: 2.85.1
14
+ Version: 2.86.0
15
15
  Libs: -L${libdir} -lglib-2.0 -lm -pthread
16
16
  Cflags: -I${includedir}/glib-2.0 -pthread -I${libdir}/glib-2.0/include
@@ -6,7 +6,7 @@ gmodule_supported=true
6
6
 
7
7
  Name: GModule
8
8
  Description: Dynamic module loader for GLib
9
- Version: 2.85.1
9
+ Version: 2.86.0
10
10
  Requires: gmodule-no-export-2.0, glib-2.0
11
11
  Libs: -Wl,--export-dynamic
12
12
  Cflags: -I${includedir}
@@ -6,7 +6,7 @@ gmodule_supported=true
6
6
 
7
7
  Name: GModule
8
8
  Description: Dynamic module loader for GLib
9
- Version: 2.85.1
9
+ Version: 2.86.0
10
10
  Requires: gmodule-no-export-2.0, glib-2.0
11
11
  Libs: -Wl,--export-dynamic
12
12
  Cflags: -I${includedir}
@@ -6,7 +6,7 @@ gmodule_supported=true
6
6
 
7
7
  Name: GModule
8
8
  Description: Dynamic module loader for GLib
9
- Version: 2.85.1
9
+ Version: 2.86.0
10
10
  Requires: glib-2.0
11
11
  Libs: -L${libdir} -lgmodule-2.0 -pthread
12
12
  Cflags: -I${includedir} -pthread
@@ -4,7 +4,7 @@ libdir=${prefix}/lib
4
4
 
5
5
  Name: GObject
6
6
  Description: GLib Type, Object, Parameter and Signal Library
7
- Version: 2.85.1
7
+ Version: 2.86.0
8
8
  Requires: glib-2.0, libffi >= 3.0.0
9
9
  Libs: -L${libdir} -lgobject-2.0
10
10
  Cflags: -I${includedir}
@@ -4,7 +4,7 @@ libdir=${prefix}/lib
4
4
 
5
5
  Name: GThread
6
6
  Description: Thread support for GLib
7
- Version: 2.85.1
7
+ Version: 2.86.0
8
8
  Requires: glib-2.0
9
9
  Libs: -L${libdir} -lgthread-2.0 -pthread
10
10
  Cflags: -I${includedir} -pthread
@@ -6,6 +6,6 @@ includedir=${prefix}/include
6
6
 
7
7
  Name: libffi
8
8
  Description: Library supporting Foreign Function Interfaces
9
- Version: 3.5.1
9
+ Version: 3.5.2
10
10
  Libs: -L${toolexeclibdir} -lffi
11
11
  Cflags: -I${includedir}
@@ -6,7 +6,7 @@ includedir=${prefix}/include
6
6
  Name: libheif
7
7
  Description: HEIF image codec.
8
8
  URL: https://github.com/strukturag/libheif
9
- Version: 1.20.1
9
+ Version: 1.20.2
10
10
  Requires:
11
11
  Requires.private: aom libsharpyuv
12
12
  Libs: -L${libdir} -lheif
@@ -5,6 +5,6 @@ includedir=${prefix}/include
5
5
 
6
6
  Name: libhwy
7
7
  Description: Efficient and performance-portable SIMD wrapper
8
- Version: 1.2.0
8
+ Version: 1.3.0
9
9
  Libs: -L${libdir} -lhwy
10
10
  Cflags: -I${includedir} -DHWY_STATIC_DEFINE
@@ -4,7 +4,7 @@ libdir=${prefix}/lib
4
4
 
5
5
  Name: vips-cpp
6
6
  Description: C++ API for vips8 image processing library
7
- Version: 8.17.1
7
+ Version: 8.17.2
8
8
  Requires: vips, glib-2.0 >= 2.52, gio-2.0, gobject-2.0, expat, zlib >= 0.4, imagequant, cgif >= 0.2.0, libexif >= 0.6, libjpeg, spng >= 0.7, libwebp >= 0.6, libwebpmux >= 0.6, libwebpdemux >= 0.6, libtiff-4, lcms2, libhwy >= 1.0.5, libheif >= 1.7.0
9
9
  Libs: -L${libdir} -lvips-cpp -lresvg -pthread -lm
10
10
  Cflags: -I${includedir} -DHAVE_CONFIG_H -pthread
@@ -4,7 +4,7 @@ libdir=${prefix}/lib
4
4
 
5
5
  Name: vips
6
6
  Description: Image processing library
7
- Version: 8.17.1
7
+ Version: 8.17.2
8
8
  Requires: glib-2.0 >= 2.52, gio-2.0, gobject-2.0, expat, zlib >= 0.4, imagequant, cgif >= 0.2.0, libexif >= 0.6, libjpeg, spng >= 0.7, libwebp >= 0.6, libwebpmux >= 0.6, libwebpdemux >= 0.6, libtiff-4, lcms2, libhwy >= 1.0.5, libheif >= 1.7.0
9
9
  Libs: -L${libdir} -lvips -lresvg -pthread -lm
10
10
  Cflags: -I${includedir} -DHAVE_CONFIG_H -pthread
@@ -1,6 +1,7 @@
1
1
  prefix=/src/build/target
2
2
  exec_prefix=${prefix}
3
3
  symbol_prefix=
4
+ bindir=${exec_prefix}/bin
4
5
  libdir=${exec_prefix}/lib
5
6
  sharedlibdir=${libdir}
6
7
  includedir=${prefix}/include
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@img/sharp-libvips-dev-wasm32",
3
- "version": "1.2.1",
3
+ "version": "1.2.2-rc.2",
4
4
  "description": "Header files and static wasm32 libraries for libvips and dependencies to build sharp as wasm32",
5
5
  "author": "Lovell Fuller <npm@lovell.info>",
6
6
  "homepage": "https://sharp.pixelplumbing.com",
package/versions.json CHANGED
@@ -1,20 +1,20 @@
1
1
  {
2
- "aom": "3.12.1",
2
+ "aom": "3.13.1",
3
3
  "cgif": "0.5.0",
4
- "emscripten": "4.0.11",
4
+ "emscripten": "4.0.14",
5
5
  "exif": "0.6.25",
6
6
  "expat": "2.7.1",
7
- "ffi": "3.5.1",
8
- "glib": "2.85.1",
9
- "heif": "1.20.1",
10
- "highway": "1.2.0",
7
+ "ffi": "3.5.2",
8
+ "glib": "2.86.0",
9
+ "heif": "1.20.2",
10
+ "highway": "1.3.0",
11
11
  "imagequant": "2.4.1",
12
12
  "lcms": "2.17",
13
13
  "mozjpeg": "4.1.5",
14
14
  "resvg": "0.45.1",
15
15
  "spng": "0.7.4",
16
16
  "tiff": "4.7.0",
17
- "vips": "8.17.1",
17
+ "vips": "8.17.2",
18
18
  "webp": "1.6.0",
19
- "zlib-ng": "2.2.4"
19
+ "zlib-ng": "2.2.5"
20
20
  }