Skip to content
Snippets Groups Projects
Commit 773159ed authored by Mike Melanson's avatar Mike Melanson
Browse files

iterate through the appropriate range of palette entries

Originally committed as revision 2295 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent b10529b4
No related branches found
No related tags found
No related merge requests found
......@@ -449,7 +449,7 @@ static int process_ipmovie_chunk(IPMVEContext *s, ByteIOContext *pb,
/* load the palette into internal data structure */
first_color = LE_16(&scratch[0]);
last_color = LE_16(&scratch[2]);
last_color = first_color + LE_16(&scratch[2]);
/* sanity check (since they are 16 bit values) */
if ((first_color > 0xFF) || (last_color > 0xFF)) {
debug_ipmovie("demux_ipmovie: set_palette indices out of range (%d -> %d)\n",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment