summaryrefslogtreecommitdiff
path: root/libavcodec/h263dec.c
diff options
context:
space:
mode:
authorLuca Barbato <lu_zero@gentoo.org>2013-01-17 14:12:44 +0100
committerLuca Barbato <lu_zero@gentoo.org>2013-01-17 21:41:18 +0100
commit80ac87c13dc8c6c063e26a464c5c542357c0583f (patch)
treee94ff97860d81f41341e5283cbb60631bbed47a9 /libavcodec/h263dec.c
parent43e0e0c4e56d754988f6d2d7eec1c302cee5d5ec (diff)
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.c2
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;