Commit b93601fd authored by alex's avatar alex

initial support for zygovideo


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@2449 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent bf36e411
...@@ -4304,6 +4304,8 @@ int h263_decode_picture_header(MpegEncContext *s) ...@@ -4304,6 +4304,8 @@ int h263_decode_picture_header(MpegEncContext *s)
/* MPPTYPE */ /* MPPTYPE */
s->pict_type = get_bits(&s->gb, 3) + I_TYPE; s->pict_type = get_bits(&s->gb, 3) + I_TYPE;
dprintf("pict_type: %d\n", s->pict_type); dprintf("pict_type: %d\n", s->pict_type);
if (s->pict_type == 8 && s->avctx->codec_tag == ff_get_fourcc("ZYGO"))
s->pict_type = I_TYPE;
if (s->pict_type != I_TYPE && if (s->pict_type != I_TYPE &&
s->pict_type != P_TYPE) s->pict_type != P_TYPE)
return -1; return -1;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment