Browse Source

Use clang-format style in vips/vips.c

DarthSim 2 years ago
parent
commit
1cd344cbb7
1 changed files with 277 additions and 222 deletions
  1. 277 222
      vips/vips.c

+ 277 - 222
vips/vips.c

@@ -3,8 +3,8 @@
 
 #define VIPS_SUPPORT_AVIF_SPEED \
   (VIPS_MAJOR_VERSION > 8 || \
-    (VIPS_MAJOR_VERSION == 8 && VIPS_MINOR_VERSION > 10) || \
-    (VIPS_MAJOR_VERSION == 8 && VIPS_MINOR_VERSION >= 10 && VIPS_MICRO_VERSION >= 2))
+      (VIPS_MAJOR_VERSION == 8 && VIPS_MINOR_VERSION > 10) || \
+      (VIPS_MAJOR_VERSION == 8 && VIPS_MINOR_VERSION >= 10 && VIPS_MICRO_VERSION >= 2))
 
 #define VIPS_SUPPORT_AVIF_EFFORT \
   (VIPS_MAJOR_VERSION > 8 || (VIPS_MAJOR_VERSION == 8 && VIPS_MINOR_VERSION >= 12))
@@ -23,28 +23,34 @@
 #endif
 
 int
-vips_initialize() {
+vips_initialize()
+{
   return vips_init("imgproxy");
 }
 
 void
-clear_image(VipsImage **in) {
-  if (G_IS_OBJECT(*in)) g_clear_object(in);
+clear_image(VipsImage **in)
+{
+  if (G_IS_OBJECT(*in))
+    g_clear_object(in);
 }
 
 void
-g_free_go(void **buf) {
+g_free_go(void **buf)
+{
   g_free(*buf);
 }
 
 void
-swap_and_clear(VipsImage **in, VipsImage *out) {
+swap_and_clear(VipsImage **in, VipsImage *out)
+{
   clear_image(in);
   *in = out;
 }
 
 int
-gif_resolution_limit() {
+gif_resolution_limit()
+{
 #if VIPS_GIF_RESOLUTION_LIMITED
   // https://github.com/libvips/libvips/blob/v8.12.2/libvips/foreign/cgifsave.c#L437-L442
   return 2000 * 2000;
@@ -55,12 +61,13 @@ gif_resolution_limit() {
 
 // Just create and destroy a tiny image to ensure vips is operational
 int
-vips_health() {
+vips_health()
+{
   VipsImage *base = vips_image_new();
   VipsImage **t = (VipsImage **) vips_object_local_array(VIPS_OBJECT(base), 2);
 
   int res = vips_black(&t[0], 4, 4, "bands", 4, NULL) ||
-    !(t[1] = vips_image_copy_memory(t[0]));
+      !(t[1] = vips_image_copy_memory(t[0]));
 
   clear_image(&base);
 
@@ -68,37 +75,41 @@ vips_health() {
 }
 
 int
-vips_jpegload_go(void *buf, size_t len, int shrink, VipsImage **out) {
+vips_jpegload_go(void *buf, size_t len, int shrink, VipsImage **out)
+{
   if (shrink > 1)
     return vips_jpegload_buffer(buf, len, out, "access", VIPS_ACCESS_SEQUENTIAL, "shrink", shrink,
-      NULL);
+        NULL);
 
   return vips_jpegload_buffer(buf, len, out, "access", VIPS_ACCESS_SEQUENTIAL, NULL);
 }
 
 int
-vips_pngload_go(void *buf, size_t len, VipsImage **out) {
+vips_pngload_go(void *buf, size_t len, VipsImage **out)
+{
   return vips_pngload_buffer(buf, len, out, "access", VIPS_ACCESS_SEQUENTIAL, NULL);
 }
 
 int
-vips_webpload_go(void *buf, size_t len, double scale, int pages, VipsImage **out) {
+vips_webpload_go(void *buf, size_t len, double scale, int pages, VipsImage **out)
+{
   return vips_webpload_buffer(
-    buf, len, out,
-    "access", VIPS_ACCESS_SEQUENTIAL,
-    "scale", scale,
-    "n", pages,
-    NULL
-  );
+      buf, len, out,
+      "access", VIPS_ACCESS_SEQUENTIAL,
+      "scale", scale,
+      "n", pages,
+      NULL);
 }
 
 int
-vips_gifload_go(void *buf, size_t len, int pages, VipsImage **out) {
+vips_gifload_go(void *buf, size_t len, int pages, VipsImage **out)
+{
   return vips_gifload_buffer(buf, len, out, "access", VIPS_ACCESS_SEQUENTIAL, "n", pages, NULL);
 }
 
 int
-vips_svgload_go(void *buf, size_t len, double scale, VipsImage **out) {
+vips_svgload_go(void *buf, size_t len, double scale, VipsImage **out)
+{
   // libvips limits the minimal scale to 0.001, so we have to scale down dpi
   // for lower scale values
   double dpi = 72.0;
@@ -108,35 +119,36 @@ vips_svgload_go(void *buf, size_t len, double scale, VipsImage **out) {
   }
 
   return vips_svgload_buffer(
-    buf, len, out,
-    "access", VIPS_ACCESS_SEQUENTIAL,
-    "scale", scale,
-    "dpi", dpi,
-    NULL
-  );
+      buf, len, out,
+      "access", VIPS_ACCESS_SEQUENTIAL,
+      "scale", scale,
+      "dpi", dpi,
+      NULL);
 }
 
 int
-vips_heifload_go(void *buf, size_t len, VipsImage **out, int thumbnail) {
+vips_heifload_go(void *buf, size_t len, VipsImage **out, int thumbnail)
+{
   return vips_heifload_buffer(
-    buf, len, out,
-    "access", VIPS_ACCESS_SEQUENTIAL,
-    "thumbnail", thumbnail,
-    NULL
-  );
+      buf, len, out,
+      "access", VIPS_ACCESS_SEQUENTIAL,
+      "thumbnail", thumbnail,
+      NULL);
 }
 
 int
-vips_tiffload_go(void *buf, size_t len, VipsImage **out) {
+vips_tiffload_go(void *buf, size_t len, VipsImage **out)
+{
   return vips_tiffload_buffer(buf, len, out, "access", VIPS_ACCESS_SEQUENTIAL, NULL);
 }
 
 int
-vips_black_go(VipsImage **out, int width, int height, int bands) {
+vips_black_go(VipsImage **out, int width, int height, int bands)
+{
   VipsImage *tmp;
 
   int res = vips_black(&tmp, width, height, "bands", bands, NULL) ||
-    vips_copy(tmp, out, "interpretation", VIPS_INTERPRETATION_sRGB, NULL);
+      vips_copy(tmp, out, "interpretation", VIPS_INTERPRETATION_sRGB, NULL);
 
   clear_image(&tmp);
 
@@ -147,20 +159,21 @@ vips_black_go(VipsImage **out, int width, int height, int bands) {
  * https://github.com/libvips/libvips/pull/3627 fixes this behavior
  */
 int
-vips_fix_scRGB_alpha_tiff(VipsImage *in, VipsImage **out) {
+vips_fix_scRGB_alpha_tiff(VipsImage *in, VipsImage **out)
+{
 #if VIPS_SCRGB_ALPHA_FIXED
-  #warning Revise vips_fix_scRGB_tiff
+#warning Revise vips_fix_scRGB_tiff
   return vips_copy(in, out, NULL);
 #else
   VipsImage *base = vips_image_new();
   VipsImage **t = (VipsImage **) vips_object_local_array(VIPS_OBJECT(base), 4);
 
   int res =
-    vips_extract_band(in, &t[0], 0, "n", 3, NULL) ||
-    vips_extract_band(in, &t[1], 3, "n", in->Bands - 3, NULL) ||
-    vips_linear1(t[1], &t[2], 255.0, 0, NULL) ||
-    vips_cast(t[2], &t[3], in->BandFmt, NULL) ||
-    vips_bandjoin2(t[0], t[3], out, NULL);
+      vips_extract_band(in, &t[0], 0, "n", 3, NULL) ||
+      vips_extract_band(in, &t[1], 3, "n", in->Bands - 3, NULL) ||
+      vips_linear1(t[1], &t[2], 255.0, 0, NULL) ||
+      vips_cast(t[2], &t[3], in->BandFmt, NULL) ||
+      vips_bandjoin2(t[0], t[3], out, NULL);
 
   clear_image(&base);
 
@@ -173,7 +186,8 @@ vips_fix_scRGB_alpha_tiff(VipsImage *in, VipsImage **out) {
  * VIPS_INTERPRETATION_GREY16
  */
 int
-vips_fix_BW_float_tiff(VipsImage *in, VipsImage **out) {
+vips_fix_BW_float_tiff(VipsImage *in, VipsImage **out)
+{
   VipsImage *base = vips_image_new();
   VipsImage **t = (VipsImage **) vips_object_local_array(VIPS_OBJECT(base), 8);
 
@@ -185,12 +199,11 @@ vips_fix_BW_float_tiff(VipsImage *in, VipsImage **out) {
    */
   if (in->Bands > 1) {
     if (
-      vips_extract_band(in, &t[0], 0, NULL) ||
-      vips_extract_band(in, &t[1], 1, "n", in->Bands - 1, NULL) ||
-      vips_linear1(t[1], &t[2], 65535.0, 0, NULL) ||
-      vips_cast_ushort(t[2], &t[3], NULL) ||
-      vips_copy(t[3], &t[4], "interpretation", VIPS_INTERPRETATION_GREY16, NULL)
-    ) {
+        vips_extract_band(in, &t[0], 0, NULL) ||
+        vips_extract_band(in, &t[1], 1, "n", in->Bands - 1, NULL) ||
+        vips_linear1(t[1], &t[2], 65535.0, 0, NULL) ||
+        vips_cast_ushort(t[2], &t[3], NULL) ||
+        vips_copy(t[3], &t[4], "interpretation", VIPS_INTERPRETATION_GREY16, NULL)) {
       clear_image(&base);
       return 1;
     }
@@ -204,10 +217,9 @@ vips_fix_BW_float_tiff(VipsImage *in, VipsImage **out) {
    */
   VipsImage *rgb[3] = { color, color, color };
   if (
-    vips_bandjoin(rgb, &t[5], 3, NULL) ||
-    vips_colourspace(t[5], &t[6], VIPS_INTERPRETATION_GREY16,
-      "source_space", VIPS_INTERPRETATION_scRGB, NULL)
-  ) {
+      vips_bandjoin(rgb, &t[5], 3, NULL) ||
+      vips_colourspace(t[5], &t[6], VIPS_INTERPRETATION_GREY16,
+          "source_space", VIPS_INTERPRETATION_scRGB, NULL)) {
     clear_image(&base);
     return 1;
   }
@@ -216,8 +228,8 @@ vips_fix_BW_float_tiff(VipsImage *in, VipsImage **out) {
 
   if (alpha)
     res =
-      vips_bandjoin2(t[6], alpha, &t[7], NULL) ||
-      vips_icc_remove(t[7], out);
+        vips_bandjoin2(t[6], alpha, &t[7], NULL) ||
+        vips_icc_remove(t[7], out);
   else
     res = vips_icc_remove(t[6], out);
 
@@ -227,7 +239,8 @@ vips_fix_BW_float_tiff(VipsImage *in, VipsImage **out) {
 }
 
 int
-vips_fix_float_tiff(VipsImage *in, VipsImage **out) {
+vips_fix_float_tiff(VipsImage *in, VipsImage **out)
+{
   /* Vips loads linear alpha in the 0.0-1.0 range but uses the 0.0-255.0 range.
    * https://github.com/libvips/libvips/pull/3627 fixes this behavior
    */
@@ -239,92 +252,103 @@ vips_fix_float_tiff(VipsImage *in, VipsImage **out) {
    * VIPS_INTERPRETATION_GREY16
    */
   if (
-    (in->Type == VIPS_INTERPRETATION_B_W || in->Type == VIPS_INTERPRETATION_GREY16) &&
-    (in->BandFmt == VIPS_FORMAT_FLOAT || in->BandFmt == VIPS_FORMAT_DOUBLE)
-  )
+      (in->Type == VIPS_INTERPRETATION_B_W || in->Type == VIPS_INTERPRETATION_GREY16) &&
+      (in->BandFmt == VIPS_FORMAT_FLOAT || in->BandFmt == VIPS_FORMAT_DOUBLE))
     return vips_fix_BW_float_tiff(in, out);
 
   return vips_copy(in, out, NULL);
 }
 
 int
-vips_get_orientation(VipsImage *image) {
+vips_get_orientation(VipsImage *image)
+{
   int orientation;
 
   if (
-    vips_image_get_typeof(image, VIPS_META_ORIENTATION) == G_TYPE_INT &&
-    vips_image_get_int(image, VIPS_META_ORIENTATION, &orientation) == 0
-  ) return orientation;
+      vips_image_get_typeof(image, VIPS_META_ORIENTATION) == G_TYPE_INT &&
+      vips_image_get_int(image, VIPS_META_ORIENTATION, &orientation) == 0)
+    return orientation;
 
   return 1;
 }
 
 int
-vips_get_bits_per_sample(VipsImage *image) {
+vips_get_bits_per_sample(VipsImage *image)
+{
   int bits_per_sample;
 
   if (
-    vips_image_get_typeof(image, VIPS_META_BITS_PER_SAMPLE) == G_TYPE_INT &&
-    vips_image_get_int(image, VIPS_META_BITS_PER_SAMPLE, &bits_per_sample) == 0
-  ) return bits_per_sample;
+      vips_image_get_typeof(image, VIPS_META_BITS_PER_SAMPLE) == G_TYPE_INT &&
+      vips_image_get_int(image, VIPS_META_BITS_PER_SAMPLE, &bits_per_sample) == 0)
+    return bits_per_sample;
 
   return 0;
 }
 
 void
-vips_remove_bits_per_sample(VipsImage *image) {
+vips_remove_bits_per_sample(VipsImage *image)
+{
   vips_image_remove(image, VIPS_META_BITS_PER_SAMPLE);
 }
 
 VipsBandFormat
-vips_band_format(VipsImage *in) {
+vips_band_format(VipsImage *in)
+{
   return in->BandFmt;
 }
 
 gboolean
-vips_is_animated(VipsImage * in) {
+vips_is_animated(VipsImage *in)
+{
   int n_pages;
 
-  return( vips_image_get_typeof(in, "delay") != G_TYPE_INVALID &&
-          vips_image_get_typeof(in, "loop") != G_TYPE_INVALID &&
-          vips_image_get_typeof(in, "page-height") == G_TYPE_INT &&
-          vips_image_get_typeof(in, "n-pages") == G_TYPE_INT &&
-          vips_image_get_int(in, "n-pages", &n_pages) == 0 &&
-          n_pages > 1 );
+  return (vips_image_get_typeof(in, "delay") != G_TYPE_INVALID &&
+      vips_image_get_typeof(in, "loop") != G_TYPE_INVALID &&
+      vips_image_get_typeof(in, "page-height") == G_TYPE_INT &&
+      vips_image_get_typeof(in, "n-pages") == G_TYPE_INT &&
+      vips_image_get_int(in, "n-pages", &n_pages) == 0 &&
+      n_pages > 1);
 }
 
 int
-vips_image_get_array_int_go(VipsImage *image, const char *name, int **out, int *n) {
+vips_image_get_array_int_go(VipsImage *image, const char *name, int **out, int *n)
+{
   return vips_image_get_array_int(image, name, out, n);
 }
 
 void
-vips_image_set_array_int_go(VipsImage *image, const char *name, const int *array, int n) {
+vips_image_set_array_int_go(VipsImage *image, const char *name, const int *array, int n)
+{
   vips_image_set_array_int(image, name, array, n);
 }
 
 int
-vips_addalpha_go(VipsImage *in, VipsImage **out) {
+vips_addalpha_go(VipsImage *in, VipsImage **out)
+{
   return vips_addalpha(in, out, NULL);
 }
 
 int
-vips_copy_go(VipsImage *in, VipsImage **out) {
+vips_copy_go(VipsImage *in, VipsImage **out)
+{
   return vips_copy(in, out, NULL);
 }
 
 int
-vips_cast_go(VipsImage *in, VipsImage **out, VipsBandFormat format) {
+vips_cast_go(VipsImage *in, VipsImage **out, VipsBandFormat format)
+{
   return vips_cast(in, out, format, NULL);
 }
 
 int
-vips_rad2float_go(VipsImage *in, VipsImage **out) {
+vips_rad2float_go(VipsImage *in, VipsImage **out)
+{
   return vips_rad2float(in, out, NULL);
 }
 
 int
-vips_resize_go(VipsImage *in, VipsImage **out, double wscale, double hscale) {
+vips_resize_go(VipsImage *in, VipsImage **out, double wscale, double hscale)
+{
   if (!vips_image_hasalpha(in))
     return vips_resize(in, out, wscale, "vscale", hscale, NULL);
 
@@ -334,11 +358,11 @@ vips_resize_go(VipsImage *in, VipsImage **out, double wscale, double hscale) {
   VipsImage **t = (VipsImage **) vips_object_local_array(VIPS_OBJECT(base), 4);
 
   int res =
-    vips_premultiply(in, &t[0], NULL) ||
-    vips_cast(t[0], &t[1], format, NULL) ||
-    vips_resize(t[1], &t[2], wscale, "vscale", hscale, NULL) ||
-    vips_unpremultiply(t[2], &t[3], NULL) ||
-    vips_cast(t[3], out, format, NULL);
+      vips_premultiply(in, &t[0], NULL) ||
+      vips_cast(t[0], &t[1], format, NULL) ||
+      vips_resize(t[1], &t[2], wscale, "vscale", hscale, NULL) ||
+      vips_unpremultiply(t[2], &t[3], NULL) ||
+      vips_cast(t[3], out, format, NULL);
 
   clear_image(&base);
 
@@ -346,7 +370,8 @@ vips_resize_go(VipsImage *in, VipsImage **out, double wscale, double hscale) {
 }
 
 int
-vips_icc_is_srgb_iec61966(VipsImage *in) {
+vips_icc_is_srgb_iec61966(VipsImage *in)
+{
   const void *data;
   size_t data_len;
 
@@ -365,41 +390,48 @@ vips_icc_is_srgb_iec61966(VipsImage *in) {
 
   /* Predict it is sRGB IEC61966 2.1 by checking some header fields
    */
-  return ((memcmp(data + 48, "IEC ",  4) == 0) && // Device manufacturer
-          (memcmp(data + 52, "sRGB",  4) == 0) && // Device model
-          (memcmp(data + 80, "HP  ",  4) == 0) && // Profile creator
-          (memcmp(data + 24, date,    6) == 0) && // Date of creation
-          (memcmp(data + 8,  version, 4) == 0));  // Version
+  return ((memcmp(data + 48, "IEC ", 4) == 0) && // Device manufacturer
+      (memcmp(data + 52, "sRGB", 4) == 0) &&     // Device model
+      (memcmp(data + 80, "HP  ", 4) == 0) &&     // Profile creator
+      (memcmp(data + 24, date, 6) == 0) &&       // Date of creation
+      (memcmp(data + 8, version, 4) == 0));      // Version
 }
 
 int
-vips_has_embedded_icc(VipsImage *in) {
+vips_has_embedded_icc(VipsImage *in)
+{
   return vips_image_get_typeof(in, VIPS_META_ICC_NAME) != 0;
 }
 
 int
-vips_icc_import_go(VipsImage *in, VipsImage **out) {
+vips_icc_import_go(VipsImage *in, VipsImage **out)
+{
   return vips_icc_import(in, out, "embedded", TRUE, "pcs", VIPS_PCS_LAB, NULL);
 }
 
 int
-vips_icc_export_go(VipsImage *in, VipsImage **out) {
+vips_icc_export_go(VipsImage *in, VipsImage **out)
+{
   return vips_icc_export(in, out, "pcs", VIPS_PCS_LAB, NULL);
 }
 
 int
-vips_icc_export_srgb(VipsImage *in, VipsImage **out) {
+vips_icc_export_srgb(VipsImage *in, VipsImage **out)
+{
   return vips_icc_export(in, out, "output_profile", "sRGB", "pcs", VIPS_PCS_LAB, NULL);
 }
 
 int
-vips_icc_transform_go(VipsImage *in, VipsImage **out) {
+vips_icc_transform_go(VipsImage *in, VipsImage **out)
+{
   return vips_icc_transform(in, out, "sRGB", "embedded", TRUE, "pcs", VIPS_PCS_LAB, NULL);
 }
 
 int
-vips_icc_remove(VipsImage *in, VipsImage **out) {
-  if (vips_copy(in, out, NULL)) return 1;
+vips_icc_remove(VipsImage *in, VipsImage **out)
+{
+  if (vips_copy(in, out, NULL))
+    return 1;
 
   vips_image_remove(*out, VIPS_META_ICC_NAME);
   vips_image_remove(*out, "exif-ifd0-WhitePoint");
@@ -410,28 +442,33 @@ vips_icc_remove(VipsImage *in, VipsImage **out) {
 }
 
 int
-vips_colourspace_go(VipsImage *in, VipsImage **out, VipsInterpretation cs) {
+vips_colourspace_go(VipsImage *in, VipsImage **out, VipsInterpretation cs)
+{
   return vips_colourspace(in, out, cs, NULL);
 }
 
 int
-vips_rot_go(VipsImage *in, VipsImage **out, VipsAngle angle) {
+vips_rot_go(VipsImage *in, VipsImage **out, VipsAngle angle)
+{
   return vips_rot(in, out, angle, NULL);
 }
 
 int
-vips_flip_horizontal_go(VipsImage *in, VipsImage **out) {
+vips_flip_horizontal_go(VipsImage *in, VipsImage **out)
+{
   return vips_flip(in, out, VIPS_DIRECTION_HORIZONTAL, NULL);
 }
 
 int
-vips_smartcrop_go(VipsImage *in, VipsImage **out, int width, int height) {
+vips_smartcrop_go(VipsImage *in, VipsImage **out, int width, int height)
+{
   return vips_smartcrop(in, out, width, height, NULL);
 }
 
 int
 vips_apply_filters(VipsImage *in, VipsImage **out, double blur_sigma,
-  double sharp_sigma, int pixelate_pixels) {
+    double sharp_sigma, int pixelate_pixels)
+{
 
   VipsImage *base = vips_image_new();
   VipsImage **t = (VipsImage **) vips_object_local_array(VIPS_OBJECT(base), 10);
@@ -442,9 +479,8 @@ vips_apply_filters(VipsImage *in, VipsImage **out, double blur_sigma,
 
   if ((blur_sigma > 0 || sharp_sigma > 0) && vips_image_hasalpha(in)) {
     if (
-      vips_premultiply(in, &t[0], NULL) ||
-      vips_cast(t[0], &t[1], format, NULL)
-    ) {
+        vips_premultiply(in, &t[0], NULL) ||
+        vips_cast(t[0], &t[1], format, NULL)) {
       clear_image(&base);
       return 1;
     }
@@ -479,8 +515,8 @@ vips_apply_filters(VipsImage *in, VipsImage **out, double blur_sigma,
     w = in->Xsize;
     h = in->Ysize;
 
-    tw = (int)(VIPS_CEIL((double)w / pixelate_pixels)) * pixelate_pixels;
-    th = (int)(VIPS_CEIL((double)h / pixelate_pixels)) * pixelate_pixels;
+    tw = (int) (VIPS_CEIL((double) w / pixelate_pixels)) * pixelate_pixels;
+    th = (int) (VIPS_CEIL((double) h / pixelate_pixels)) * pixelate_pixels;
 
     if (tw > w || th > h) {
       if (vips_embed(in, &t[4], 0, 0, tw, th, "extend", VIPS_EXTEND_MIRROR, NULL)) {
@@ -492,19 +528,18 @@ vips_apply_filters(VipsImage *in, VipsImage **out, double blur_sigma,
     }
 
     if (
-      vips_shrink(in, &t[5], pixelate_pixels, pixelate_pixels, NULL) ||
-      vips_zoom(t[5], &t[6], pixelate_pixels, pixelate_pixels, NULL)
-    ) {
-        clear_image(&base);
-        return 1;
+        vips_shrink(in, &t[5], pixelate_pixels, pixelate_pixels, NULL) ||
+        vips_zoom(t[5], &t[6], pixelate_pixels, pixelate_pixels, NULL)) {
+      clear_image(&base);
+      return 1;
     }
 
     in = t[6];
 
     if (tw > w || th > h) {
       if (vips_extract_area(in, &t[7], 0, 0, w, h, NULL)) {
-          clear_image(&base);
-          return 1;
+        clear_image(&base);
+        return 1;
       }
 
       in = t[7];
@@ -521,8 +556,8 @@ vips_apply_filters(VipsImage *in, VipsImage **out, double blur_sigma,
   }
 
   int res =
-    vips_colourspace(in, &t[9], interpretation, NULL) ||
-    vips_cast(t[9], out, format, NULL);
+      vips_colourspace(in, &t[9], interpretation, NULL) ||
+      vips_cast(t[9], out, format, NULL);
 
   clear_image(&base);
 
@@ -530,25 +565,28 @@ vips_apply_filters(VipsImage *in, VipsImage **out, double blur_sigma,
 }
 
 int
-vips_flatten_go(VipsImage *in, VipsImage **out, double r, double g, double b) {
+vips_flatten_go(VipsImage *in, VipsImage **out, double r, double g, double b)
+{
   if (!vips_image_hasalpha(in))
     return vips_copy(in, out, NULL);
 
   VipsArrayDouble *bg = vips_array_double_newv(3, r, g, b);
   int res = vips_flatten(in, out, "background", bg, NULL);
-  vips_area_unref((VipsArea *)bg);
+  vips_area_unref((VipsArea *) bg);
   return res;
 }
 
 int
-vips_extract_area_go(VipsImage *in, VipsImage **out, int left, int top, int width, int height) {
+vips_extract_area_go(VipsImage *in, VipsImage **out, int left, int top, int width, int height)
+{
   return vips_extract_area(in, out, left, top, width, height, NULL);
 }
 
 int
 vips_trim(VipsImage *in, VipsImage **out, double threshold,
-          gboolean smart, double r, double g, double b,
-          gboolean equal_hor, gboolean equal_ver) {
+    gboolean smart, double r, double g, double b,
+    gboolean equal_hor, gboolean equal_ver)
+{
 
   VipsImage *base = vips_image_new();
   VipsImage **t = (VipsImage **) vips_object_local_array(VIPS_OBJECT(base), 2);
@@ -581,7 +619,8 @@ vips_trim(VipsImage *in, VipsImage **out, double threshold,
       return 1;
     }
     bga = vips_array_double_new(bg, bgn);
-  } else {
+  }
+  else {
     bga = vips_array_double_newv(3, r, g, b);
   }
 
@@ -589,7 +628,7 @@ vips_trim(VipsImage *in, VipsImage **out, double threshold,
   int res = vips_find_trim(tmp, &left, &top, &width, &height, "background", bga, "threshold", threshold, NULL);
 
   clear_image(&base);
-  vips_area_unref((VipsArea *)bga);
+  vips_area_unref((VipsArea *) bga);
   g_free(bg);
 
   if (res) {
@@ -601,7 +640,8 @@ vips_trim(VipsImage *in, VipsImage **out, double threshold,
     diff = right - left;
     if (diff > 0) {
       width += diff;
-    } else if (diff < 0) {
+    }
+    else if (diff < 0) {
       left = right;
       width -= diff;
     }
@@ -612,7 +652,8 @@ vips_trim(VipsImage *in, VipsImage **out, double threshold,
     diff = bot - top;
     if (diff > 0) {
       height += diff;
-    } else if (diff < 0) {
+    }
+    else if (diff < 0) {
       top = bot;
       height -= diff;
     }
@@ -626,7 +667,8 @@ vips_trim(VipsImage *in, VipsImage **out, double threshold,
 }
 
 int
-vips_replicate_go(VipsImage *in, VipsImage **out, int width, int height) {
+vips_replicate_go(VipsImage *in, VipsImage **out, int width, int height)
+{
   VipsImage *tmp;
 
   if (vips_replicate(in, &tmp, 1 + width / in->Xsize, 1 + height / in->Ysize, NULL))
@@ -643,7 +685,8 @@ vips_replicate_go(VipsImage *in, VipsImage **out, int width, int height) {
 }
 
 int
-vips_embed_go(VipsImage *in, VipsImage **out, int x, int y, int width, int height) {
+vips_embed_go(VipsImage *in, VipsImage **out, int x, int y, int width, int height)
+{
   VipsImage *tmp = NULL;
 
   if (!vips_image_hasalpha(in)) {
@@ -654,15 +697,17 @@ vips_embed_go(VipsImage *in, VipsImage **out, int x, int y, int width, int heigh
   }
 
   int ret =
-    vips_embed(in, out, x, y, width, height, "extend", VIPS_EXTEND_BLACK, NULL);
+      vips_embed(in, out, x, y, width, height, "extend", VIPS_EXTEND_BLACK, NULL);
 
-  if (tmp) clear_image(&tmp);
+  if (tmp)
+    clear_image(&tmp);
 
   return ret;
 }
 
 int
-vips_apply_watermark(VipsImage *in, VipsImage *watermark, VipsImage **out, int left, int top, double opacity) {
+vips_apply_watermark(VipsImage *in, VipsImage *watermark, VipsImage **out, int left, int top, double opacity)
+{
   VipsImage *base = vips_image_new();
   VipsImage **t = (VipsImage **) vips_object_local_array(VIPS_OBJECT(base), 7);
 
@@ -675,11 +720,10 @@ vips_apply_watermark(VipsImage *in, VipsImage *watermark, VipsImage **out, int l
 
   if (opacity < 1) {
     if (
-      vips_extract_band(watermark, &t[1], 0, "n", watermark->Bands - 1, NULL) ||
-      vips_extract_band(watermark, &t[2], watermark->Bands - 1, "n", 1, NULL) ||
-      vips_linear1(t[2], &t[3], opacity, 0, NULL) ||
-      vips_bandjoin2(t[1], t[3], &t[4], NULL)
-    ) {
+        vips_extract_band(watermark, &t[1], 0, "n", watermark->Bands - 1, NULL) ||
+        vips_extract_band(watermark, &t[2], watermark->Bands - 1, "n", 1, NULL) ||
+        vips_linear1(t[2], &t[3], opacity, 0, NULL) ||
+        vips_bandjoin2(t[1], t[3], &t[4], NULL)) {
       clear_image(&base);
       return 1;
     }
@@ -690,13 +734,11 @@ vips_apply_watermark(VipsImage *in, VipsImage *watermark, VipsImage **out, int l
   int had_alpha = vips_image_hasalpha(in);
 
   if (
-    vips_composite2(
-      in, watermark, &t[5], VIPS_BLEND_MODE_OVER,
-      "x", left, "y", top, "compositing_space", in->Type,
-      NULL
-    ) ||
-    vips_cast(t[5], &t[6], vips_image_get_format(in), NULL)
-  ) {
+      vips_composite2(
+          in, watermark, &t[5], VIPS_BLEND_MODE_OVER,
+          "x", left, "y", top, "compositing_space", in->Type,
+          NULL) ||
+      vips_cast(t[5], &t[6], vips_image_get_format(in), NULL)) {
     clear_image(&base);
     return 1;
   }
@@ -705,7 +747,8 @@ vips_apply_watermark(VipsImage *in, VipsImage *watermark, VipsImage **out, int l
 
   if (!had_alpha && vips_image_hasalpha(t[6])) {
     res = vips_extract_band(t[6], out, 0, "n", t[6]->Bands - 1, NULL);
-  } else {
+  }
+  else {
     res = vips_copy(t[6], out, NULL);
   }
 
@@ -722,20 +765,22 @@ vips_linecache_seq(VipsImage *in, VipsImage **out, int tile_height)
 }
 
 int
-vips_arrayjoin_go(VipsImage **in, VipsImage **out, int n) {
+vips_arrayjoin_go(VipsImage **in, VipsImage **out, int n)
+{
   return vips_arrayjoin(in, out, n, "across", 1, NULL);
 }
 
 int
-vips_strip(VipsImage *in, VipsImage **out, int keep_exif_copyright) {
+vips_strip(VipsImage *in, VipsImage **out, int keep_exif_copyright)
+{
   static double default_resolution = 72.0 / 25.4;
 
   if (vips_copy(
-    in, out,
-    "xres", default_resolution,
-    "yres", default_resolution,
-    NULL
-  )) return 1;
+          in, out,
+          "xres", default_resolution,
+          "yres", default_resolution,
+          NULL))
+    return 1;
 
   gchar **fields = vips_image_get_fields(in);
 
@@ -743,30 +788,30 @@ vips_strip(VipsImage *in, VipsImage **out, int keep_exif_copyright) {
     gchar *name = fields[i];
 
     if (
-      (strcmp(name, VIPS_META_ICC_NAME) == 0) ||
-      (strcmp(name, VIPS_META_BITS_PER_SAMPLE) == 0) ||
-      (strcmp(name, "width") == 0) ||
-      (strcmp(name, "height") == 0) ||
-      (strcmp(name, "bands") == 0) ||
-      (strcmp(name, "format") == 0) ||
-      (strcmp(name, "coding") == 0) ||
-      (strcmp(name, "interpretation") == 0) ||
-      (strcmp(name, "xoffset") == 0) ||
-      (strcmp(name, "yoffset") == 0) ||
-      (strcmp(name, "xres") == 0) ||
-      (strcmp(name, "yres") == 0) ||
-      (strcmp(name, "vips-loader") == 0) ||
-      (strcmp(name, "background") == 0) ||
-      (strcmp(name, "vips-sequential") == 0) ||
-      (strcmp(name, "imgproxy-dpr-scale") == 0)
-    ) continue;
+        (strcmp(name, VIPS_META_ICC_NAME) == 0) ||
+        (strcmp(name, VIPS_META_BITS_PER_SAMPLE) == 0) ||
+        (strcmp(name, "width") == 0) ||
+        (strcmp(name, "height") == 0) ||
+        (strcmp(name, "bands") == 0) ||
+        (strcmp(name, "format") == 0) ||
+        (strcmp(name, "coding") == 0) ||
+        (strcmp(name, "interpretation") == 0) ||
+        (strcmp(name, "xoffset") == 0) ||
+        (strcmp(name, "yoffset") == 0) ||
+        (strcmp(name, "xres") == 0) ||
+        (strcmp(name, "yres") == 0) ||
+        (strcmp(name, "vips-loader") == 0) ||
+        (strcmp(name, "background") == 0) ||
+        (strcmp(name, "vips-sequential") == 0) ||
+        (strcmp(name, "imgproxy-dpr-scale") == 0))
+      continue;
 
     if (keep_exif_copyright) {
       if (
-        (strcmp(name, VIPS_META_EXIF_NAME) == 0) ||
-        (strcmp(name, "exif-ifd0-Copyright") == 0) ||
-        (strcmp(name, "exif-ifd0-Artist") == 0)
-      ) continue;
+          (strcmp(name, VIPS_META_EXIF_NAME) == 0) ||
+          (strcmp(name, "exif-ifd0-Copyright") == 0) ||
+          (strcmp(name, "exif-ifd0-Artist") == 0))
+        continue;
     }
 
     vips_image_remove(*out, name);
@@ -778,30 +823,37 @@ vips_strip(VipsImage *in, VipsImage **out, int keep_exif_copyright) {
 }
 
 int
-vips_jpegsave_go(VipsImage *in, void **buf, size_t *len, int quality, int interlace) {
+vips_jpegsave_go(VipsImage *in, void **buf, size_t *len, int quality, int interlace)
+{
   return vips_jpegsave_buffer(
-    in, buf, len,
-    "Q", quality,
-    "optimize_coding", TRUE,
-    "interlace", interlace,
-    NULL
-  );
+      in, buf, len,
+      "Q", quality,
+      "optimize_coding", TRUE,
+      "interlace", interlace,
+      NULL);
 }
 
 int
-vips_pngsave_go(VipsImage *in, void **buf, size_t *len, int interlace, int quantize, int colors) {
+vips_pngsave_go(VipsImage *in, void **buf, size_t *len, int interlace, int quantize, int colors)
+{
   int bitdepth;
 
   if (quantize) {
     bitdepth = 1;
-    if (colors > 16) bitdepth = 8;
-    else if (colors > 4) bitdepth = 4;
-    else if (colors > 2) bitdepth = 2;
-  } else {
+    if (colors > 16)
+      bitdepth = 8;
+    else if (colors > 4)
+      bitdepth = 4;
+    else if (colors > 2)
+      bitdepth = 2;
+  }
+  else {
     bitdepth = vips_get_bits_per_sample(in);
     if (bitdepth && bitdepth <= 8) {
-      if (bitdepth > 4) bitdepth = 8;
-      else if (bitdepth > 2) bitdepth = 4;
+      if (bitdepth > 4)
+        bitdepth = 8;
+      else if (bitdepth > 2)
+        bitdepth = 4;
       quantize = 1;
       colors = 1 << bitdepth;
     }
@@ -809,36 +861,36 @@ vips_pngsave_go(VipsImage *in, void **buf, size_t *len, int interlace, int quant
 
   if (!quantize)
     return vips_pngsave_buffer(
-      in, buf, len,
-      "filter", VIPS_FOREIGN_PNG_FILTER_ALL,
-      "interlace", interlace,
-      NULL
-    );
+        in, buf, len,
+        "filter", VIPS_FOREIGN_PNG_FILTER_ALL,
+        "interlace", interlace,
+        NULL);
 
   return vips_pngsave_buffer(
-    in, buf, len,
-    "filter", VIPS_FOREIGN_PNG_FILTER_NONE,
-    "interlace", interlace,
-    "palette", quantize,
-    "bitdepth", bitdepth,
-    NULL
-  );
+      in, buf, len,
+      "filter", VIPS_FOREIGN_PNG_FILTER_NONE,
+      "interlace", interlace,
+      "palette", quantize,
+      "bitdepth", bitdepth,
+      NULL);
 }
 
 int
-vips_webpsave_go(VipsImage *in, void **buf, size_t *len, int quality) {
+vips_webpsave_go(VipsImage *in, void **buf, size_t *len, int quality)
+{
   return vips_webpsave_buffer(
-    in, buf, len,
-    "Q", quality,
-    NULL
-  );
+      in, buf, len,
+      "Q", quality,
+      NULL);
 }
 
 int
-vips_gifsave_go(VipsImage *in, void **buf, size_t *len) {
+vips_gifsave_go(VipsImage *in, void **buf, size_t *len)
+{
 #if VIPS_SUPPORT_GIFSAVE
   int bitdepth = vips_get_bits_per_sample(in);
-  if (bitdepth <= 0 || bitdepth > 8 ) bitdepth = 8;
+  if (bitdepth <= 0 || bitdepth > 8)
+    bitdepth = 8;
   return vips_gifsave_buffer(in, buf, len, "bitdepth", bitdepth, NULL);
 #else
   vips_error("vips_gifsave_go", "Saving GIF is not supported (libvips 8.12+ reuired)");
@@ -847,26 +899,29 @@ vips_gifsave_go(VipsImage *in, void **buf, size_t *len) {
 }
 
 int
-vips_tiffsave_go(VipsImage *in, void **buf, size_t *len, int quality) {
+vips_tiffsave_go(VipsImage *in, void **buf, size_t *len, int quality)
+{
   return vips_tiffsave_buffer(in, buf, len, "Q", quality, NULL);
 }
 
 int
-vips_avifsave_go(VipsImage *in, void **buf, size_t *len, int quality, int speed) {
+vips_avifsave_go(VipsImage *in, void **buf, size_t *len, int quality, int speed)
+{
   return vips_heifsave_buffer(
-    in, buf, len,
-    "Q", quality,
-    "compression", VIPS_FOREIGN_HEIF_COMPRESSION_AV1,
-  #if VIPS_SUPPORT_AVIF_EFFORT
-    "effort", 9-speed,
-  #elif VIPS_SUPPORT_AVIF_SPEED
-    "speed", speed,
-  #endif
-    NULL);
+      in, buf, len,
+      "Q", quality,
+      "compression", VIPS_FOREIGN_HEIF_COMPRESSION_AV1,
+#if VIPS_SUPPORT_AVIF_EFFORT
+      "effort", 9 - speed,
+#elif VIPS_SUPPORT_AVIF_SPEED
+      "speed", speed,
+#endif
+      NULL);
 }
 
 void
-vips_cleanup() {
+vips_cleanup()
+{
   vips_error_clear();
   vips_thread_shutdown();
 }