mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-24 13:56:33 +02:00
swscale: fix overflows in filterPos[] calculation for large sizes.
Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind CC: libav-stable@libav.org
This commit is contained in:
parent
84db922bf9
commit
19a65b5be4
@ -244,7 +244,7 @@ static int initFilter(int16_t **outFilter, int16_t **filterPos, int *outFilterSi
|
|||||||
xDstInSrc+= xInc;
|
xDstInSrc+= xInc;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
int xDstInSrc;
|
int64_t xDstInSrc;
|
||||||
int sizeFactor;
|
int sizeFactor;
|
||||||
|
|
||||||
if (flags&SWS_BICUBIC) sizeFactor= 4;
|
if (flags&SWS_BICUBIC) sizeFactor= 4;
|
||||||
@ -810,8 +810,8 @@ int sws_init_context(SwsContext *c, SwsFilter *srcFilter, SwsFilter *dstFilter)
|
|||||||
if (!dstFilter) dstFilter= &dummyFilter;
|
if (!dstFilter) dstFilter= &dummyFilter;
|
||||||
if (!srcFilter) srcFilter= &dummyFilter;
|
if (!srcFilter) srcFilter= &dummyFilter;
|
||||||
|
|
||||||
c->lumXInc= ((srcW<<16) + (dstW>>1))/dstW;
|
c->lumXInc= (((int64_t)srcW<<16) + (dstW>>1))/dstW;
|
||||||
c->lumYInc= ((srcH<<16) + (dstH>>1))/dstH;
|
c->lumYInc= (((int64_t)srcH<<16) + (dstH>>1))/dstH;
|
||||||
c->dstFormatBpp = av_get_bits_per_pixel(&av_pix_fmt_descriptors[dstFormat]);
|
c->dstFormatBpp = av_get_bits_per_pixel(&av_pix_fmt_descriptors[dstFormat]);
|
||||||
c->srcFormatBpp = av_get_bits_per_pixel(&av_pix_fmt_descriptors[srcFormat]);
|
c->srcFormatBpp = av_get_bits_per_pixel(&av_pix_fmt_descriptors[srcFormat]);
|
||||||
c->vRounder= 4* 0x0001000100010001ULL;
|
c->vRounder= 4* 0x0001000100010001ULL;
|
||||||
@ -897,8 +897,8 @@ int sws_init_context(SwsContext *c, SwsFilter *srcFilter, SwsFilter *dstFilter)
|
|||||||
else
|
else
|
||||||
c->canMMX2BeUsed=0;
|
c->canMMX2BeUsed=0;
|
||||||
|
|
||||||
c->chrXInc= ((c->chrSrcW<<16) + (c->chrDstW>>1))/c->chrDstW;
|
c->chrXInc= (((int64_t)c->chrSrcW<<16) + (c->chrDstW>>1))/c->chrDstW;
|
||||||
c->chrYInc= ((c->chrSrcH<<16) + (c->chrDstH>>1))/c->chrDstH;
|
c->chrYInc= (((int64_t)c->chrSrcH<<16) + (c->chrDstH>>1))/c->chrDstH;
|
||||||
|
|
||||||
// match pixel 0 of the src to pixel 0 of dst and match pixel n-2 of src to pixel n-2 of dst
|
// match pixel 0 of the src to pixel 0 of dst and match pixel n-2 of src to pixel n-2 of dst
|
||||||
// but only for the FAST_BILINEAR mode otherwise do correct scaling
|
// but only for the FAST_BILINEAR mode otherwise do correct scaling
|
||||||
@ -913,8 +913,8 @@ int sws_init_context(SwsContext *c, SwsFilter *srcFilter, SwsFilter *dstFilter)
|
|||||||
}
|
}
|
||||||
//we don't use the x86 asm scaler if MMX is available
|
//we don't use the x86 asm scaler if MMX is available
|
||||||
else if (HAVE_MMX && cpu_flags & AV_CPU_FLAG_MMX) {
|
else if (HAVE_MMX && cpu_flags & AV_CPU_FLAG_MMX) {
|
||||||
c->lumXInc = ((srcW-2)<<16)/(dstW-2) - 20;
|
c->lumXInc = ((int64_t)(srcW-2)<<16)/(dstW-2) - 20;
|
||||||
c->chrXInc = ((c->chrSrcW-2)<<16)/(c->chrDstW-2) - 20;
|
c->chrXInc = ((int64_t)(c->chrSrcW-2)<<16)/(c->chrDstW-2) - 20;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user