Mercurial > libavformat.hg
changeset 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 | 168e8eafefc6 |
children | 963e3b76c7a6 |
files | utils.c |
diffstat | 1 files changed, 3 insertions(+), 1 deletions(-) [+] |
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; }