mirror of
https://github.com/talgo-cloud/bimg.git
synced 2026-03-09 23:48:13 -07:00
vips__gaussblur: add the missing sentinel
This commit is contained in:
parent
4cc9e0dde1
commit
6968a8a453
1 changed files with 1 additions and 1 deletions
2
vips.h
2
vips.h
|
|
@ -330,6 +330,6 @@ vips__gaussblur(VipsImage *in, VipsImage **out, double sigma, double min_ampl) {
|
|||
#if (VIPS_MAJOR_VERSION == 7 && VIPS_MINOR_VERSION < 41)
|
||||
return vips_gaussblur(in, out, ceil(sigma), NULL);
|
||||
#else
|
||||
return vips_gaussblur(in, out, sigma, NULL, "min_ampl", min_ampl);
|
||||
return vips_gaussblur(in, out, sigma, NULL, "min_ampl", min_ampl, NULL);
|
||||
#endif
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue