# HG changeset patch # User michael # Date 1235482554 0 # Node ID 9678d2a61b554dd8367abedc976074b14913ad8d # Parent 168e8eafefc6e8653ee6eda48289bc7eca601bbb Add CODEC_ID_H264 to tb_unreliable(), it belongs there for the same reason as mpeg2. (telecine amongth others) diff -r 168e8eafefc6 -r 9678d2a61b55 utils.c --- a/utils.c Mon Feb 23 19:51:16 2009 +0000 +++ b/utils.c Tue Feb 24 13:35:54 2009 +0000 @@ -1976,7 +1976,9 @@ || 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; }