1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-07-16 22:42:38 +02:00

h264: fix integer overflow, assert failure

Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Michael Niedermayer
2012-11-18 15:23:54 +01:00
parent 1a947dfa83
commit 2d5f1addbe

View File

@ -1104,8 +1104,12 @@ av_cold int ff_h264_decode_init(AVCodecContext *avctx)
h->x264_build = -1; h->x264_build = -1;
ff_h264_reset_sei(h); ff_h264_reset_sei(h);
if (avctx->codec_id == AV_CODEC_ID_H264) { if (avctx->codec_id == AV_CODEC_ID_H264) {
if (avctx->ticks_per_frame == 1) if (avctx->ticks_per_frame == 1) {
s->avctx->time_base.den *= 2; if(s->avctx->time_base.den < INT_MAX/2) {
s->avctx->time_base.den *= 2;
} else
s->avctx->time_base.num /= 2;
}
avctx->ticks_per_frame = 2; avctx->ticks_per_frame = 2;
} }