diff options
author | Luca Barbato <lu_zero@gentoo.org> | 2013-01-17 14:12:44 +0100 |
---|---|---|
committer | Luca Barbato <lu_zero@gentoo.org> | 2013-01-17 21:41:18 +0100 |
commit | 80ac87c13dc8c6c063e26a464c5c542357c0583f (patch) | |
tree | e94ff97860d81f41341e5283cbb60631bbed47a9 /libavcodec/h263dec.c | |
parent | 43e0e0c4e56d754988f6d2d7eec1c302cee5d5ec (diff) | |
download | ffmpeg-80ac87c13dc8c6c063e26a464c5c542357c0583f.tar.gz |
lavc: support ZenoXVID custom tag
Looks like this kind of samples are produced by certain Russian
equipment.
Diffstat (limited to 'libavcodec/h263dec.c')
-rw-r--r-- | libavcodec/h263dec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/h263dec.c b/libavcodec/h263dec.c index fc5f565131..7e64538198 100644 --- a/libavcodec/h263dec.c +++ b/libavcodec/h263dec.c @@ -441,7 +441,7 @@ retry: if(s->xvid_build==-1 && s->divx_version==-1 && s->lavc_build==-1){ if(s->stream_codec_tag == AV_RL32("XVID") || s->codec_tag == AV_RL32("XVID") || s->codec_tag == AV_RL32("XVIX") || - s->codec_tag == AV_RL32("RMP4") || + s->codec_tag == AV_RL32("RMP4") || s->codec_tag == AV_RL32("ZMP4") || s->codec_tag == AV_RL32("SIPP") ) s->xvid_build= 0; |