From 19df37a8a6a442f93518f891ad5d474e27f11b13 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Fri, 27 Feb 2009 14:01:32 +0000 Subject: [PATCH] Fix SVQ3 regression since ticks_per_frame=2. Originally committed as revision 17640 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/h264.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libavcodec/h264.c b/libavcodec/h264.c index 24dc201e9..707cde138 100644 --- a/libavcodec/h264.c +++ b/libavcodec/h264.c @@ -2201,7 +2201,8 @@ static av_cold int decode_init(AVCodecContext *avctx){ h->sei_dpb_output_delay = 0; h->sei_cpb_removal_delay = -1; h->sei_buffering_period_present = 0; - avctx->ticks_per_frame = 2; + if(avctx->codec_id == CODEC_ID_H264) + avctx->ticks_per_frame = 2; return 0; } -- 2.11.0