Commit 41b9ba14 authored by kostya's avatar kostya

Cinepak strip ID is a single byte

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@16575 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 86ff6975
......@@ -358,7 +358,7 @@ static int cinepak_decode (CinepakContext *s)
if ((s->data + 12) > eod)
return -1;
s->strips[i].id = AV_RB16 (s->data);
s->strips[i].id = s->data[0];
s->strips[i].y1 = y0;
s->strips[i].x1 = 0;
s->strips[i].y2 = y0 + AV_RB16 (&s->data[8]);
......
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