From 6c949d129b8dbfc1c7cb0410cf1c80724a805fdb Mon Sep 17 00:00:00 2001
From: Michael Niedermayer <michaelni@gmx.at>
Date: Mon, 17 Mar 2003 09:53:39 +0000
Subject: [PATCH] 10l

Originally committed as revision 1688 to svn://svn.ffmpeg.org/ffmpeg/trunk
---
 libavcodec/raw.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/libavcodec/raw.c b/libavcodec/raw.c
index 9dc88e842db..3befbfc39b8 100644
--- a/libavcodec/raw.c
+++ b/libavcodec/raw.c
@@ -78,6 +78,7 @@ static int raw_decode(AVCodecContext *avctx,
 			    uint8_t *buf, int buf_size)
 {
     RawVideoContext *context = avctx->priv_data;
+    int bytesNeeded;
 
     AVPicture * picture = (AVPicture *) data;
 
@@ -88,7 +89,7 @@ static int raw_decode(AVCodecContext *avctx,
         return buf_size;
     }
 
-    int bytesNeeded = context->length - (context->p - context->buffer);
+    bytesNeeded = context->length - (context->p - context->buffer);
     if (buf_size < bytesNeeded) {
         memcpy(context->p, buf, buf_size);
         context->p += buf_size;
-- 
GitLab