mirror of https://git.ffmpeg.org/ffmpeg.git
swscale: fix another integer overflow at large dimensions/rescales.
This commit is contained in:
parent
19adb0bc2d
commit
2bb628f870
|
@ -274,7 +274,7 @@ static int initFilter(int16_t **outFilter, int16_t **filterPos, int *outFilterSi
|
|||
int j;
|
||||
(*filterPos)[i]= xx;
|
||||
for (j=0; j<filterSize; j++) {
|
||||
int64_t d= ((int64_t)FFABS((xx<<17) - xDstInSrc))<<13;
|
||||
int64_t d= (FFABS(((int64_t)xx<<17) - xDstInSrc))<<13;
|
||||
double floatd;
|
||||
int64_t coeff;
|
||||
|
||||
|
|
Loading…
Reference in New Issue