From 2fc24b3273f69a548531cdeaace8c68ac0f038ef Mon Sep 17 00:00:00 2001
From: Justin Ruggles <justin.ruggles@gmail.com>
Date: Mon, 9 Jul 2012 11:00:16 -0400
Subject: [PATCH] alac: remove a duplicate local variable

---
 libavcodec/alac.c | 1 -
 1 file changed, 1 deletion(-)

diff --git a/libavcodec/alac.c b/libavcodec/alac.c
index 0aeb4109b77..74da253cabe 100644
--- a/libavcodec/alac.c
+++ b/libavcodec/alac.c
@@ -130,7 +130,6 @@ static void bastardized_rice_decompress(ALACContext *alac,
 
         /* special case: there may be compressed blocks of 0 */
         if ((history < 128) && (output_count+1 < output_size)) {
-            int k;
             unsigned int block_size;
 
             k = 7 - av_log2(history) + ((history + 16) >> 6 /* / 64 */);
-- 
GitLab