Commit af9da83b authored by Mike Melanson's avatar Mike Melanson

automatically detect Cinepak data from Sega FILM/CPK files

Originally committed as revision 4525 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent f0ff20a1
...@@ -316,12 +316,21 @@ static int cinepak_decode (CinepakContext *s) ...@@ -316,12 +316,21 @@ static int cinepak_decode (CinepakContext *s)
uint8_t *eod = (s->data + s->size); uint8_t *eod = (s->data + s->size);
int i, result, strip_size, frame_flags, num_strips; int i, result, strip_size, frame_flags, num_strips;
int y0 = 0; int y0 = 0;
int encoded_buf_size;
/* if true, Cinepak data is from a Sega FILM/CPK file */
int sega_film_data = 0;
if (s->size < 10) if (s->size < 10)
return -1; return -1;
frame_flags = s->data[0]; frame_flags = s->data[0];
num_strips = BE_16 (&s->data[8]); num_strips = BE_16 (&s->data[8]);
encoded_buf_size = BE_16 (&s->data[2]);
if (encoded_buf_size != s->size)
sega_film_data = 1;
if (sega_film_data)
s->data += 12;
else
s->data += 10; s->data += 10;
if (num_strips > MAX_STRIPS) if (num_strips > MAX_STRIPS)
......
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