]> git.sesse.net Git - ffmpeg/commitdiff
alac: remove a duplicate local variable
authorJustin Ruggles <justin.ruggles@gmail.com>
Mon, 9 Jul 2012 15:00:16 +0000 (11:00 -0400)
committerJustin Ruggles <justin.ruggles@gmail.com>
Thu, 19 Jul 2012 17:26:46 +0000 (13:26 -0400)
libavcodec/alac.c

index 0aeb4109b771e01b16d2cc1e183d569f11c1bd27..74da253cabe21a7b96a0ac6d96a956e7faeafc82 100644 (file)
@@ -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 */);