Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Melanson <mike@multimedia.cx>2005-12-14 03:19:01 +0300
committerMike Melanson <mike@multimedia.cx>2005-12-14 03:19:01 +0300
commit0c3ee78f91486919acee57e9f6220dd4e2b611c9 (patch)
tree0652f99ac5d10e6db38ae610cd6137c7d2949b3b /libavcodec
parent86f77a493a629bc9a646cb6cbdb874674f7bbeb4 (diff)
correctly handle very large Cinepak frames (courtesy of John Koleszar
<jkoleszar@on2.com>) Originally committed as revision 4742 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r--libavcodec/cinepak.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/cinepak.c b/libavcodec/cinepak.c
index d1e1f0ec16..6da011f2a3 100644
--- a/libavcodec/cinepak.c
+++ b/libavcodec/cinepak.c
@@ -325,7 +325,7 @@ static int cinepak_decode (CinepakContext *s)
frame_flags = s->data[0];
num_strips = BE_16 (&s->data[8]);
- encoded_buf_size = BE_16 (&s->data[2]);
+ encoded_buf_size = ((s->data[1] << 16) | BE_16 (&s->data[2]));
if (encoded_buf_size != s->size)
sega_film_data = 1;
if (sega_film_data)