@img/sharp-libvips-dev-wasm32 1.2.2-rc.1 → 1.2.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.
- package/include/aom/aom_decoder.h +1 -1
- package/include/aom/aom_encoder.h +2 -0
- package/include/aom/aomcx.h +106 -25
- package/include/glib-2.0/glib/gunicode.h +1 -1
- package/include/glib-2.0/gobject/glib-types.h +1 -1
- package/include/glib-2.0/gobject/gparam.h +1 -1
- package/include/vips/connection.h +4 -4
- package/include/vips/version.h +4 -4
- package/lib/glib-2.0/include/glibconfig.h +2 -2
- package/lib/libaom.a +0 -0
- package/lib/libcgif.a +0 -0
- package/lib/libexif.a +0 -0
- package/lib/libexpat.a +0 -0
- package/lib/libffi.a +0 -0
- package/lib/libgio-2.0.a +0 -0
- package/lib/libglib-2.0.a +0 -0
- package/lib/libgmodule-2.0.a +0 -0
- package/lib/libgobject-2.0.a +0 -0
- package/lib/libgthread-2.0.a +0 -0
- package/lib/libheif.a +0 -0
- package/lib/libhwy.a +0 -0
- package/lib/libimagequant.a +0 -0
- package/lib/libjpeg.a +0 -0
- package/lib/liblcms2.a +0 -0
- package/lib/libresvg.a +0 -0
- package/lib/libsharpyuv.a +0 -0
- package/lib/libspng.a +0 -0
- package/lib/libtiff.a +0 -0
- package/lib/libvips-cpp.a +0 -0
- package/lib/libvips.a +0 -0
- package/lib/libwebp.a +0 -0
- package/lib/libwebpdemux.a +0 -0
- package/lib/libwebpmux.a +0 -0
- package/lib/libz.a +0 -0
- package/lib/pkgconfig/aom.pc +2 -2
- package/lib/pkgconfig/gio-2.0.pc +1 -1
- package/lib/pkgconfig/glib-2.0.pc +1 -1
- package/lib/pkgconfig/gmodule-2.0.pc +1 -1
- package/lib/pkgconfig/gmodule-export-2.0.pc +1 -1
- package/lib/pkgconfig/gmodule-no-export-2.0.pc +1 -1
- package/lib/pkgconfig/gobject-2.0.pc +1 -1
- package/lib/pkgconfig/gthread-2.0.pc +1 -1
- package/lib/pkgconfig/vips-cpp.pc +1 -1
- package/lib/pkgconfig/vips.pc +1 -1
- package/package.json +1 -1
- package/versions.json +4 -4
|
@@ -52,7 +52,7 @@ extern "C" {
|
|
|
52
52
|
*
|
|
53
53
|
* The available flags are specified by AOM_CODEC_CAP_* defines.
|
|
54
54
|
*/
|
|
55
|
-
|
|
55
|
+
/*!\brief Can support external frame buffers */
|
|
56
56
|
#define AOM_CODEC_CAP_EXTERNAL_FRAME_BUFFER 0x200000
|
|
57
57
|
|
|
58
58
|
/*! \brief Initialization-time Feature Enabling
|
|
@@ -377,6 +377,8 @@ typedef struct cfg_options {
|
|
|
377
377
|
typedef long aom_enc_frame_flags_t;
|
|
378
378
|
/*!\brief Force this frame to be a keyframe */
|
|
379
379
|
#define AOM_EFLAG_FORCE_KF (1 << 0)
|
|
380
|
+
/*!\brief Calculate PSNR for this frame, requires g_lag_in_frames to be 0 */
|
|
381
|
+
#define AOM_EFLAG_CALCULATE_PSNR (1 << 1)
|
|
380
382
|
|
|
381
383
|
/*!\brief Encoder configuration structure
|
|
382
384
|
*
|
package/include/aom/aomcx.h
CHANGED
|
@@ -208,11 +208,11 @@ enum aome_enc_control_id {
|
|
|
208
208
|
* encoding process, values greater than 0 will increase encoder speed at
|
|
209
209
|
* the expense of quality.
|
|
210
210
|
*
|
|
211
|
-
* Valid range: 0..
|
|
211
|
+
* Valid range: 0..12. 0 runs the slowest, and 12 runs the fastest;
|
|
212
212
|
* quality improves as speed decreases (since more compression
|
|
213
213
|
* possibilities are explored).
|
|
214
214
|
*
|
|
215
|
-
* NOTE: 10
|
|
215
|
+
* NOTE: 10 - 12 are only allowed in AOM_USAGE_REALTIME. In
|
|
216
216
|
* AOM_USAGE_GOOD_QUALITY and AOM_USAGE_ALL_INTRA, 9 is the highest allowed
|
|
217
217
|
* value. However, AOM_USAGE_GOOD_QUALITY treats 7..9 the same as 6. Also,
|
|
218
218
|
* AOM_USAGE_REALTIME treats 0..4 the same as 5.
|
|
@@ -313,6 +313,10 @@ enum aome_enc_control_id {
|
|
|
313
313
|
|
|
314
314
|
/*!\brief Codec control function to set number of spatial layers, int
|
|
315
315
|
* parameter
|
|
316
|
+
*
|
|
317
|
+
* Valid range:
|
|
318
|
+
* \li When using #AV1E_SET_SVC_REF_FRAME_CONFIG: [1, #AOM_MAX_SS_LAYERS]
|
|
319
|
+
* \li When \em not using #AV1E_SET_SVC_REF_FRAME_CONFIG: [1, 3]
|
|
316
320
|
*/
|
|
317
321
|
AOME_SET_NUMBER_SPATIAL_LAYERS = 27,
|
|
318
322
|
|
|
@@ -1136,6 +1140,10 @@ enum aome_enc_control_id {
|
|
|
1136
1140
|
* - 4 = use modulation for user rating based perceptual quality optimization
|
|
1137
1141
|
* - 5 = use modulation for HDR video
|
|
1138
1142
|
* - 6 = use modulation for all intra using Variance Boost
|
|
1143
|
+
*
|
|
1144
|
+
* \attention Delta q modes 1-5 are unsupported and are silently ignored in
|
|
1145
|
+
* non-RD mode. Non-RD mode is enabled by setting cpu-used >= 8 (all intra
|
|
1146
|
+
* usage) and cpu-used >= 7 (realtime usage).
|
|
1139
1147
|
*/
|
|
1140
1148
|
AV1E_SET_DELTAQ_MODE = 107,
|
|
1141
1149
|
|
|
@@ -1399,7 +1407,8 @@ enum aome_enc_control_id {
|
|
|
1399
1407
|
*/
|
|
1400
1408
|
AV1E_SET_SVC_REF_FRAME_COMP_PRED = 147,
|
|
1401
1409
|
|
|
1402
|
-
/*!\brief Set --deltaq-mode strength
|
|
1410
|
+
/*!\brief Set --deltaq-mode strength, where the value is a percentage,
|
|
1411
|
+
* unsigned int parameter.
|
|
1403
1412
|
*
|
|
1404
1413
|
* Valid range: [0, 1000]
|
|
1405
1414
|
*/
|
|
@@ -1578,6 +1587,36 @@ enum aome_enc_control_id {
|
|
|
1578
1587
|
*/
|
|
1579
1588
|
AV1E_SET_MAX_CONSEC_FRAME_DROP_MS_CBR = 169,
|
|
1580
1589
|
|
|
1590
|
+
/*!\brief Codec control to enable the low complexity decode mode, unsigned
|
|
1591
|
+
* int parameter. Value of zero means this mode is disabled.
|
|
1592
|
+
*/
|
|
1593
|
+
AV1E_SET_ENABLE_LOW_COMPLEXITY_DECODE = 170,
|
|
1594
|
+
|
|
1595
|
+
/*!\brief Codec control to set the screen content detection mode,
|
|
1596
|
+
* aom_screen_detection_mode parameter.
|
|
1597
|
+
*
|
|
1598
|
+
* - 1: AOM_SCREEN_DETECTION_STANDARD = standard (default)
|
|
1599
|
+
* - 2: AOM_SCREEN_DETECTION_ANTIALIASING_AWARE = anti-aliased text and
|
|
1600
|
+
* graphics aware
|
|
1601
|
+
*/
|
|
1602
|
+
AV1E_SET_SCREEN_CONTENT_DETECTION_MODE = 171,
|
|
1603
|
+
|
|
1604
|
+
/*!\brief Codec control to enable adaptive sharpness, which modulates
|
|
1605
|
+
* sharpness based on frame QP, unsigned int parameter.
|
|
1606
|
+
*
|
|
1607
|
+
* Adaptive sharpness helps mitigate blocking artifacts in the low to medium
|
|
1608
|
+
* quality range.
|
|
1609
|
+
*
|
|
1610
|
+
* - 0 = disable (default)
|
|
1611
|
+
* - 1 = enable
|
|
1612
|
+
*
|
|
1613
|
+
* \note When adaptive sharpness is enabled, AOME_SET_SHARPNESS acts as a
|
|
1614
|
+
* "maximum sharpness" value. Adaptive sharpness can still modulate effective
|
|
1615
|
+
* sharpness between 0 and the maximum sharpness. As a consequence, adaptive
|
|
1616
|
+
* sharpness only has effects when sharpness is greater than 0.
|
|
1617
|
+
*/
|
|
1618
|
+
AV1E_SET_ENABLE_ADAPTIVE_SHARPNESS = 172,
|
|
1619
|
+
|
|
1581
1620
|
// Any new encoder control IDs should be added above.
|
|
1582
1621
|
// Maximum allowed encoder control ID is 229.
|
|
1583
1622
|
// No encoder control ID should be added below.
|
|
@@ -1611,19 +1650,21 @@ typedef enum aom_scaling_mode_1d {
|
|
|
1611
1650
|
/*!\brief aom region of interest map
|
|
1612
1651
|
*
|
|
1613
1652
|
* These defines the data structures for the region of interest map
|
|
1614
|
-
*
|
|
1615
|
-
* TODO(yaowu): create a unit test for ROI map related APIs
|
|
1616
|
-
*
|
|
1617
1653
|
*/
|
|
1618
1654
|
typedef struct aom_roi_map {
|
|
1619
|
-
/*!
|
|
1655
|
+
/*! If ROI is enabled. */
|
|
1656
|
+
uint8_t enabled;
|
|
1657
|
+
/*! An id between 0 and 7 for each 4x4 region within a frame. */
|
|
1620
1658
|
unsigned char *roi_map;
|
|
1621
|
-
unsigned int rows;
|
|
1622
|
-
unsigned int cols;
|
|
1623
|
-
int delta_q[AOM_MAX_SEGMENTS];
|
|
1624
|
-
int delta_lf[AOM_MAX_SEGMENTS];
|
|
1625
|
-
|
|
1626
|
-
|
|
1659
|
+
unsigned int rows; /**< Number of rows. */
|
|
1660
|
+
unsigned int cols; /**< Number of columns. */
|
|
1661
|
+
int delta_q[AOM_MAX_SEGMENTS]; /**< Quantizer deltas. */
|
|
1662
|
+
int delta_lf[AOM_MAX_SEGMENTS]; /**< Loop filter deltas. */
|
|
1663
|
+
int skip[AOM_MAX_SEGMENTS]; /**< Skip this block. */
|
|
1664
|
+
int ref_frame[AOM_MAX_SEGMENTS]; /**< Reference frame for this block. */
|
|
1665
|
+
int delta_qp_enabled; /**< Delta qp feature enabled. */
|
|
1666
|
+
int reference_enabled; /**< Reference frame feature enabled. */
|
|
1667
|
+
int rdmult_delta_qp; /**< RD mult for delta qp feature. */
|
|
1627
1668
|
} aom_roi_map_t;
|
|
1628
1669
|
|
|
1629
1670
|
/*!\brief aom active region map
|
|
@@ -1649,7 +1690,7 @@ typedef struct aom_scaling_mode {
|
|
|
1649
1690
|
AOM_SCALING_MODE v_scaling_mode; /**< vertical scaling mode */
|
|
1650
1691
|
} aom_scaling_mode_t;
|
|
1651
1692
|
|
|
1652
|
-
|
|
1693
|
+
/*!\brief AV1 encoder content type */
|
|
1653
1694
|
typedef enum {
|
|
1654
1695
|
AOM_CONTENT_DEFAULT,
|
|
1655
1696
|
AOM_CONTENT_SCREEN,
|
|
@@ -1657,7 +1698,15 @@ typedef enum {
|
|
|
1657
1698
|
AOM_CONTENT_INVALID
|
|
1658
1699
|
} aom_tune_content;
|
|
1659
1700
|
|
|
1660
|
-
|
|
1701
|
+
/*!\brief Screen content detection mode */
|
|
1702
|
+
typedef enum {
|
|
1703
|
+
/** Standard */
|
|
1704
|
+
AOM_SCREEN_DETECTION_STANDARD = 1,
|
|
1705
|
+
/** Anti-aliased text and graphics aware */
|
|
1706
|
+
AOM_SCREEN_DETECTION_ANTIALIASING_AWARE = 2
|
|
1707
|
+
} aom_screen_detection_mode;
|
|
1708
|
+
|
|
1709
|
+
/*!\brief AV1 encoder timing info type signaling */
|
|
1661
1710
|
typedef enum {
|
|
1662
1711
|
AOM_TIMING_UNSPECIFIED,
|
|
1663
1712
|
AOM_TIMING_EQUAL,
|
|
@@ -1669,9 +1718,10 @@ typedef enum {
|
|
|
1669
1718
|
* Changes the encoder to tune for certain types of input material.
|
|
1670
1719
|
*
|
|
1671
1720
|
* \note
|
|
1672
|
-
* AOM_TUNE_IQ
|
|
1673
|
-
* the tuning option to AOM_TUNE_IQ
|
|
1674
|
-
* (expressed as
|
|
1721
|
+
* AOM_TUNE_IQ and AOM_TUNE_SSIMULACRA2 are restricted to all intra mode
|
|
1722
|
+
* (AOM_USAGE_ALL_INTRA). Setting the tuning option to either AOM_TUNE_IQ or
|
|
1723
|
+
* AOM_TUNE_SSIMULACRA2 causes the following options to be set (expressed as
|
|
1724
|
+
* command-line options):
|
|
1675
1725
|
* * --enable-qm=1
|
|
1676
1726
|
* * --qm-min=2
|
|
1677
1727
|
* * --qm-max=10
|
|
@@ -1680,6 +1730,9 @@ typedef enum {
|
|
|
1680
1730
|
* * --enable-cdef=3
|
|
1681
1731
|
* * --enable-chroma-deltaq=1
|
|
1682
1732
|
* * --deltaq-mode=6
|
|
1733
|
+
* * --screen-detection-mode=2
|
|
1734
|
+
* AOM_TUNE_IQ additionally sets the following options:
|
|
1735
|
+
* * --enable-adaptive-sharpness=1
|
|
1683
1736
|
*/
|
|
1684
1737
|
typedef enum {
|
|
1685
1738
|
AOM_TUNE_PSNR = 0,
|
|
@@ -1698,6 +1751,12 @@ typedef enum {
|
|
|
1698
1751
|
* the rdmult code with AOM_TUNE_SSIM.
|
|
1699
1752
|
*/
|
|
1700
1753
|
AOM_TUNE_IQ = 10,
|
|
1754
|
+
/*!\brief Allows detection of the presence of AOM_TUNE_SSIMULACRA2 at compile
|
|
1755
|
+
* time. */
|
|
1756
|
+
#define AOM_HAVE_TUNE_SSIMULACRA2 1
|
|
1757
|
+
/* Tune that optimizes for maximum SSIMULACRA 2 scores. Shares the rdmult code
|
|
1758
|
+
with AOM_TUNE_SSIM. */
|
|
1759
|
+
AOM_TUNE_SSIMULACRA2 = 11,
|
|
1701
1760
|
} aom_tune_metric;
|
|
1702
1761
|
|
|
1703
1762
|
/*!\brief Distortion metric to use for RD optimization.
|
|
@@ -1721,21 +1780,33 @@ typedef enum {
|
|
|
1721
1780
|
#define AOM_MAX_SS_LAYERS 4 /**< Max number of spatial layers */
|
|
1722
1781
|
#define AOM_MAX_TS_LAYERS 8 /**< Max number of temporal layers */
|
|
1723
1782
|
|
|
1724
|
-
|
|
1783
|
+
/*!\brief Struct for spatial and temporal layer ID */
|
|
1725
1784
|
typedef struct aom_svc_layer_id {
|
|
1726
1785
|
int spatial_layer_id; /**< Spatial layer ID */
|
|
1727
1786
|
int temporal_layer_id; /**< Temporal layer ID */
|
|
1728
1787
|
} aom_svc_layer_id_t;
|
|
1729
1788
|
|
|
1730
|
-
|
|
1789
|
+
/*!\brief Parameter type for SVC
|
|
1731
1790
|
*
|
|
1732
1791
|
* In the arrays of size AOM_MAX_LAYERS, the index for spatial layer `sl` and
|
|
1733
1792
|
* temporal layer `tl` is sl * number_temporal_layers + tl.
|
|
1734
1793
|
*
|
|
1735
1794
|
*/
|
|
1736
1795
|
typedef struct aom_svc_params {
|
|
1737
|
-
|
|
1738
|
-
|
|
1796
|
+
/*!Number of spatial layers
|
|
1797
|
+
*
|
|
1798
|
+
* Valid range:
|
|
1799
|
+
* \li When using #AV1E_SET_SVC_REF_FRAME_CONFIG: [1, #AOM_MAX_SS_LAYERS]
|
|
1800
|
+
* \li When \em not using #AV1E_SET_SVC_REF_FRAME_CONFIG: [1, 3]
|
|
1801
|
+
*/
|
|
1802
|
+
int number_spatial_layers;
|
|
1803
|
+
/*!Number of temporal layers
|
|
1804
|
+
*
|
|
1805
|
+
* Valid range:
|
|
1806
|
+
* \li When using #AV1E_SET_SVC_REF_FRAME_CONFIG: [1, #AOM_MAX_TS_LAYERS]
|
|
1807
|
+
* \li When \em not using #AV1E_SET_SVC_REF_FRAME_CONFIG: [1, 3]
|
|
1808
|
+
*/
|
|
1809
|
+
int number_temporal_layers;
|
|
1739
1810
|
int max_quantizers[AOM_MAX_LAYERS]; /**< Max Q for each layer */
|
|
1740
1811
|
int min_quantizers[AOM_MAX_LAYERS]; /**< Min Q for each layer */
|
|
1741
1812
|
int scaling_factor_num[AOM_MAX_SS_LAYERS]; /**< Scaling factor-numerator */
|
|
@@ -1746,7 +1817,7 @@ typedef struct aom_svc_params {
|
|
|
1746
1817
|
int framerate_factor[AOM_MAX_TS_LAYERS];
|
|
1747
1818
|
} aom_svc_params_t;
|
|
1748
1819
|
|
|
1749
|
-
|
|
1820
|
+
/*!\brief Parameters for setting ref frame config */
|
|
1750
1821
|
typedef struct aom_svc_ref_frame_config {
|
|
1751
1822
|
// Three arrays need to be set: reference[], ref_id[], refresh[].
|
|
1752
1823
|
// reference[i]: is a boolean flag to indicate which of the 7 possible
|
|
@@ -1769,14 +1840,14 @@ typedef struct aom_svc_ref_frame_config {
|
|
|
1769
1840
|
int refresh[8]; /**< Refresh flag for each of the 8 buffer slots. */
|
|
1770
1841
|
} aom_svc_ref_frame_config_t;
|
|
1771
1842
|
|
|
1772
|
-
|
|
1843
|
+
/*!\brief Parameters for setting ref frame compound prediction */
|
|
1773
1844
|
typedef struct aom_svc_ref_frame_comp_pred {
|
|
1774
1845
|
// Use compound prediction for the ref_frame pairs GOLDEN_LAST (0),
|
|
1775
1846
|
// LAST2_LAST (1), and ALTREF_LAST (2).
|
|
1776
1847
|
int use_comp_pred[3]; /**<Compound reference flag. */
|
|
1777
1848
|
} aom_svc_ref_frame_comp_pred_t;
|
|
1778
1849
|
|
|
1779
|
-
|
|
1850
|
+
/*!\brief Frame drop modes for spatial/quality layer SVC */
|
|
1780
1851
|
typedef enum {
|
|
1781
1852
|
AOM_LAYER_DROP, /**< Any spatial layer can drop. */
|
|
1782
1853
|
AOM_FULL_SUPERFRAME_DROP, /**< Only full superframe can drop. */
|
|
@@ -2279,6 +2350,16 @@ AOM_CTRL_USE_TYPE(AV1E_SET_POSTENCODE_DROP_RTC, int)
|
|
|
2279
2350
|
AOM_CTRL_USE_TYPE(AV1E_SET_MAX_CONSEC_FRAME_DROP_MS_CBR, int)
|
|
2280
2351
|
#define AOM_CTRL_AV1E_SET_MAX_CONSEC_FRAME_DROP_MS_CBR
|
|
2281
2352
|
|
|
2353
|
+
AOM_CTRL_USE_TYPE(AV1E_SET_ENABLE_LOW_COMPLEXITY_DECODE, unsigned int)
|
|
2354
|
+
#define AOM_CTRL_AV1E_SET_ENABLE_LOW_COMPLEXITY_DECODE
|
|
2355
|
+
|
|
2356
|
+
AOM_CTRL_USE_TYPE(AV1E_SET_SCREEN_CONTENT_DETECTION_MODE,
|
|
2357
|
+
int) /* aom_screen_detection_mode */
|
|
2358
|
+
#define AOM_CTRL_SET_SCREEN_CONTENT_DETECTION_MODE
|
|
2359
|
+
|
|
2360
|
+
AOM_CTRL_USE_TYPE(AV1E_SET_ENABLE_ADAPTIVE_SHARPNESS, unsigned int)
|
|
2361
|
+
#define AOM_CTRL_AV1E_SET_ENABLE_ADAPTIVE_SHARPNESS
|
|
2362
|
+
|
|
2282
2363
|
/*!\endcond */
|
|
2283
2364
|
/*! @} - end defgroup aom_encoder */
|
|
2284
2365
|
#ifdef __cplusplus
|
|
@@ -864,7 +864,7 @@ gchar *g_utf8_truncate_middle (const gchar *string,
|
|
|
864
864
|
gsize truncate_length);
|
|
865
865
|
|
|
866
866
|
/* Find the UTF-8 character corresponding to ch, in string p. These
|
|
867
|
-
functions are
|
|
867
|
+
functions are equivalents to strchr and strrchr */
|
|
868
868
|
GLIB_AVAILABLE_IN_ALL
|
|
869
869
|
gchar* g_utf8_strchr (const gchar *p,
|
|
870
870
|
gssize len,
|
|
@@ -412,7 +412,7 @@ GType g_param_type_register_static (const gchar *name,
|
|
|
412
412
|
GOBJECT_AVAILABLE_IN_2_66
|
|
413
413
|
gboolean g_param_spec_is_valid_name (const gchar *name);
|
|
414
414
|
|
|
415
|
-
/* For registering
|
|
415
|
+
/* For registering builtin types */
|
|
416
416
|
GType _g_param_type_register_static_constant (const gchar *name,
|
|
417
417
|
const GParamSpecTypeInfo *pspec_info,
|
|
418
418
|
GType opt_type);
|
|
@@ -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
|
|
package/include/vips/version.h
CHANGED
|
@@ -4,16 +4,16 @@
|
|
|
4
4
|
#ifndef VIPS_VERSION_H
|
|
5
5
|
#define VIPS_VERSION_H
|
|
6
6
|
|
|
7
|
-
#define VIPS_VERSION "8.17.
|
|
8
|
-
#define VIPS_VERSION_STRING "8.17.
|
|
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 (
|
|
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 (
|
|
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)"
|
|
@@ -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
|
|
118
|
-
#define GLIB_MICRO_VERSION
|
|
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
|
package/lib/libgmodule-2.0.a
CHANGED
|
Binary file
|
package/lib/libgobject-2.0.a
CHANGED
|
Binary file
|
package/lib/libgthread-2.0.a
CHANGED
|
Binary file
|
package/lib/libheif.a
CHANGED
|
Binary file
|
package/lib/libhwy.a
CHANGED
|
Binary file
|
package/lib/libimagequant.a
CHANGED
|
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
|
package/lib/libwebpdemux.a
CHANGED
|
Binary file
|
package/lib/libwebpmux.a
CHANGED
|
Binary file
|
package/lib/libz.a
CHANGED
|
Binary file
|
package/lib/pkgconfig/aom.pc
CHANGED
|
@@ -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.
|
|
9
|
-
Version: 3.
|
|
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
|
package/lib/pkgconfig/gio-2.0.pc
CHANGED
|
@@ -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.
|
|
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
|
|
@@ -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.
|
|
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
|
package/lib/pkgconfig/vips.pc
CHANGED
|
@@ -4,7 +4,7 @@ libdir=${prefix}/lib
|
|
|
4
4
|
|
|
5
5
|
Name: vips
|
|
6
6
|
Description: Image processing library
|
|
7
|
-
Version: 8.17.
|
|
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
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@img/sharp-libvips-dev-wasm32",
|
|
3
|
-
"version": "1.2.2
|
|
3
|
+
"version": "1.2.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,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
|
-
"aom": "3.
|
|
2
|
+
"aom": "3.13.1",
|
|
3
3
|
"cgif": "0.5.0",
|
|
4
|
-
"emscripten": "4.0.
|
|
4
|
+
"emscripten": "4.0.14",
|
|
5
5
|
"exif": "0.6.25",
|
|
6
6
|
"expat": "2.7.1",
|
|
7
7
|
"ffi": "3.5.2",
|
|
8
|
-
"glib": "2.
|
|
8
|
+
"glib": "2.86.0",
|
|
9
9
|
"heif": "1.20.2",
|
|
10
10
|
"highway": "1.3.0",
|
|
11
11
|
"imagequant": "2.4.1",
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
"resvg": "0.45.1",
|
|
15
15
|
"spng": "0.7.4",
|
|
16
16
|
"tiff": "4.7.0",
|
|
17
|
-
"vips": "8.17.
|
|
17
|
+
"vips": "8.17.2",
|
|
18
18
|
"webp": "1.6.0",
|
|
19
19
|
"zlib-ng": "2.2.5"
|
|
20
20
|
}
|