1
0
mirror of https://github.com/imgproxy/imgproxy.git synced 2025-09-16 09:36:18 +02:00

Enable vector optimizations in vips

This commit is contained in:
DarthSim
2023-05-17 13:42:30 +03:00
parent 0ea06c88c2
commit aad0186b0a

View File

@@ -62,9 +62,7 @@ func Init() error {
C.vips_concurrency_set(1)
// Vector calculations cause SIGSEGV sometimes when working with JPEG.
// It's better to disable it since profit it quite small
C.vips_vector_set_enabled(0)
C.vips_vector_set_enabled(1)
if len(os.Getenv("IMGPROXY_VIPS_LEAK_CHECK")) > 0 {
C.vips_leak_set(C.gboolean(1))