Fix crashes during processing of large animated WebPs

This commit is contained in:
DarthSim
2023-09-08 17:07:09 +03:00
parent b4ee0ceb3e
commit 756958d2ca
5 changed files with 27 additions and 0 deletions

View File

@@ -714,6 +714,13 @@ vips_apply_watermark(VipsImage *in, VipsImage *watermark, VipsImage **out, int l
return res;
}
int
vips_linecache_seq(VipsImage *in, VipsImage **out, int tile_height)
{
return vips_linecache(in, out, "tile_height", tile_height, "access", VIPS_ACCESS_SEQUENTIAL,
NULL);
}
int
vips_arrayjoin_go(VipsImage **in, VipsImage **out, int n) {
return vips_arrayjoin(in, out, n, "across", 1, NULL);