diff utils.c @ 4566:9678d2a61b55 libavformat

Add CODEC_ID_H264 to tb_unreliable(), it belongs there for the same reason as mpeg2. (telecine amongth others)
author michael
date Tue, 24 Feb 2009 13:35:54 +0000
parents d86307d39b6d
children 9b00d2a02fa1
line wrap: on
line diff
--- 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;
 }