diracdec: check xybsep
Fixes division by 0 Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
e531e73a6f
commit
601d072e68
@ -856,7 +856,7 @@ static int dirac_unpack_prediction_parameters(DiracContext *s)
|
|||||||
/*[DIRAC_STD] 11.2.4 motion_data_dimensions()
|
/*[DIRAC_STD] 11.2.4 motion_data_dimensions()
|
||||||
Calculated in function dirac_unpack_block_motion_data */
|
Calculated in function dirac_unpack_block_motion_data */
|
||||||
|
|
||||||
if (s->plane[0].xbsep < s->plane[0].xblen/2 || s->plane[0].ybsep < s->plane[0].yblen/2) {
|
if (!s->plane[0].xbsep || !s->plane[0].ybsep || s->plane[0].xbsep < s->plane[0].xblen/2 || s->plane[0].ybsep < s->plane[0].yblen/2) {
|
||||||
av_log(s->avctx, AV_LOG_ERROR, "Block separation too small\n");
|
av_log(s->avctx, AV_LOG_ERROR, "Block separation too small\n");
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user