Commit e760caef authored by michael's avatar michael

Add CODEC_ID_H264 to tb_unreliable(), it belongs there for the same

reason as mpeg2. (telecine amongth others)


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@17551 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 3ea6fb65
......@@ -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;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment