|
@@ -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) |
|
|
|
|
|
s->avctx->time_base.den *= 2; |
|
|
|
|
|
|
|
|
if (avctx->ticks_per_frame == 1) { |
|
|
|
|
|
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; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|