From 773159ed275994b4fed5b0eaa64b4fece9342f26 Mon Sep 17 00:00:00 2001
From: Mike Melanson <mike@multimedia.cx>
Date: Sat, 20 Sep 2003 00:31:43 +0000
Subject: [PATCH] iterate through the appropriate range of palette entries

Originally committed as revision 2295 to svn://svn.ffmpeg.org/ffmpeg/trunk
---
 libavformat/ipmovie.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavformat/ipmovie.c b/libavformat/ipmovie.c
index cf8894147c8..45b6883b1ee 100644
--- a/libavformat/ipmovie.c
+++ b/libavformat/ipmovie.c
@@ -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",
-- 
GitLab