소스 검색

Remove LineCache diring animation images processing (issue is fixed in vips 8.15.2)

DarthSim 1 년 전
부모
커밋
59ca483aa7
1개의 변경된 파일0개의 추가작업 그리고 6개의 파일을 삭제
  1. 0 6
      processing/processing.go

+ 0 - 6
processing/processing.go

@@ -144,12 +144,6 @@ func transformAnimated(ctx context.Context, img *vips.Image, po *options.Process
 		}
 	}()
 
-	// Splitting and joining back large WebPs may cause segfault.
-	// Caching page region cures this
-	if err = img.LineCache(frameHeight); err != nil {
-		return err
-	}
-
 	for i := 0; i < framesCount; i++ {
 		frame := new(vips.Image)