From ed761067550ec784c62b32dd749bbbca62462d89 Mon Sep 17 00:00:00 2001
From: Aurelien Jacobs <aurel@gnuage.org>
Date: Mon, 9 Feb 2009 22:45:30 +0000
Subject: [PATCH] vp56: alpha_offset is uninitialized on purpose

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

diff --git a/libavcodec/vp56.c b/libavcodec/vp56.c
index c436fe54581..ad11b5289a1 100644
--- a/libavcodec/vp56.c
+++ b/libavcodec/vp56.c
@@ -500,7 +500,7 @@ int vp56_decode_frame(AVCodecContext *avctx, void *data, int *data_size,
     VP56Context *s = avctx->priv_data;
     AVFrame *const p = s->framep[VP56_FRAME_CURRENT];
     int remaining_buf_size = buf_size;
-    int is_alpha, alpha_offset;
+    int is_alpha, av_uninit(alpha_offset);
 
     if (s->has_alpha) {
         alpha_offset = bytestream_get_be24(&buf);
-- 
GitLab