summaryrefslogtreecommitdiff
path: root/libavcodec/alac.c
diff options
context:
space:
mode:
authorJustin Ruggles <justin.ruggles@gmail.com>2012-07-09 11:00:16 -0400
committerJustin Ruggles <justin.ruggles@gmail.com>2012-07-19 13:26:46 -0400
commit2fc24b3273f69a548531cdeaace8c68ac0f038ef (patch)
tree999c1b5d692c4d2cf3b04a34ac6a9d5214ba949b /libavcodec/alac.c
parent5177413d2043109f3e689e5fbfa79411c0c8e09d (diff)
alac: remove a duplicate local variable
Diffstat (limited to 'libavcodec/alac.c')
-rw-r--r--libavcodec/alac.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/libavcodec/alac.c b/libavcodec/alac.c
index 0aeb4109b7..74da253cab 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 */);