avcodec/h264_slice: Fix container cropping
Fixes out of array read Fixes: asan_heap-oob_394322e_138_cov_4265020547_CVPCMNL1_SVA_C.264 Found-by: Samuel Groß, Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
80e42387dc
commit
3c63d06d81
@ -980,7 +980,10 @@ static int init_dimensions(H264Context *h)
|
||||
|
||||
/* handle container cropping */
|
||||
if (FFALIGN(h->avctx->width, 16) == FFALIGN(width, 16) &&
|
||||
FFALIGN(h->avctx->height, 16) == FFALIGN(height, 16)) {
|
||||
FFALIGN(h->avctx->height, 16) == FFALIGN(height, 16) &&
|
||||
h->avctx->width <= width &&
|
||||
h->avctx->height <= height
|
||||
) {
|
||||
width = h->avctx->width;
|
||||
height = h->avctx->height;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user