From 7f123e7f8ad2cfd4ab7e2fbd83e17d0a8b436785 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Tue, 24 Feb 2009 13:35:54 +0000 Subject: [PATCH] Add CODEC_ID_H264 to tb_unreliable(), it belongs there for the same reason as mpeg2. (telecine amongth others) Originally committed as revision 17551 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/utils.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/libavformat/utils.c b/libavformat/utils.c index f5bcf89081..46a1b5f8bb 100644 --- a/libavformat/utils.c +++ b/libavformat/utils.c @@ -1976,7 +1976,9 @@ static int tb_unreliable(AVCodecContext *c){ || c->time_base.den < 5L*c->time_base.num /* || c->codec_tag == AV_RL32("DIVX") || c->codec_tag == AV_RL32("XVID")*/ - || c->codec_id == CODEC_ID_MPEG2VIDEO) + || c->codec_id == CODEC_ID_MPEG2VIDEO + || c->codec_id == CODEC_ID_H264 + ) return 1; return 0; }