mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
indeo4: better mv check
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
c855ece101
commit
140c54ea0b
@ -569,10 +569,10 @@ static int decode_mb_info(IVI4DecContext *ctx, IVIBandDesc *band,
|
||||
|
||||
s= band->is_halfpel;
|
||||
if (mb->type)
|
||||
if ( x + (mv_x >>s) + (y+ (mv_y >>s))*band->pitch < 0 ||
|
||||
x + ((mv_x+s)>>s) + band->mb_size - 1
|
||||
+ (y+band->mb_size - 1 +((mv_y+s)>>s))*band->pitch > band->height*band->pitch -1) {
|
||||
av_log(avctx, AV_LOG_ERROR, "motion vector %d %d outside reference\n", x*s + mv_x, y*s + mv_y);
|
||||
if ( x + (mb->mv_x >>s) + (y+ (mb->mv_y >>s))*band->pitch < 0 ||
|
||||
x + ((mb->mv_x+s)>>s) + band->mb_size - 1
|
||||
+ (y+band->mb_size - 1 +((mb->mv_y+s)>>s))*band->pitch > band->bufsize -1) {
|
||||
av_log(avctx, AV_LOG_ERROR, "motion vector %d %d outside reference\n", x*s + mb->mv_x, y*s + mb->mv_y);
|
||||
return AVERROR_INVALIDDATA;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user