summaryrefslogtreecommitdiff
path: root/libavcodec/svq3.c
diff options
context:
space:
mode:
authorMike Melanson <mike@multimedia.cx>2004-03-14 15:04:21 +0000
committerMike Melanson <mike@multimedia.cx>2004-03-14 15:04:21 +0000
commitee59b4b680960fc7d96d41d74e18881a4559a689 (patch)
treea8cfde01a24ef02fc6c9bef3a1a7f33601e1614e /libavcodec/svq3.c
parent23fe14bb20888038b91e62b16d50fe0b75043a10 (diff)
don't fetch the size of SEQH unless SEQH was found
Originally committed as revision 2888 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/svq3.c')
-rw-r--r--libavcodec/svq3.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/svq3.c b/libavcodec/svq3.c
index 34ae368881..413cc89637 100644
--- a/libavcodec/svq3.c
+++ b/libavcodec/svq3.c
@@ -799,13 +799,13 @@ static int svq3_decode_frame (AVCodecContext *avctx,
break;
extradata++;
}
- size = BE_32(&extradata[4]);
/* if a match was found, parse the extra data */
if (!memcmp (extradata, "SEQH", 4)) {
GetBitContext gb;
+ size = BE_32(&extradata[4]);
init_get_bits (&gb, extradata + 8, size);
/* 'frame size code' and optional 'width, height' */