From 27f0b75903bbaa29eecb79b94c4d1d3bb9befe47 Mon Sep 17 00:00:00 2001 From: Andre Noll Date: Sat, 14 Nov 2009 13:06:27 +0100 Subject: [PATCH] wmadec: Kill static variable frame_count. Non-constant static variables are verboten in filter code. It was only used for debugging anyway. --- wmadec_filter.c | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/wmadec_filter.c b/wmadec_filter.c index a03463d4..a17c90ad 100644 --- a/wmadec_filter.c +++ b/wmadec_filter.c @@ -1076,7 +1076,6 @@ static int wma_decode_superframe(struct private_wmadec_data *pwd, void *data, { int ret; int16_t *samples; - static int frame_count; if (buf_size == 0) { pwd->last_superframe_len = 0; @@ -1130,7 +1129,6 @@ static int wma_decode_superframe(struct private_wmadec_data *pwd, void *data, ret = wma_decode_frame(pwd, samples); if (ret < 0) goto fail; - frame_count++; samples += pwd->ahi.channels * pwd->frame_len; } @@ -1147,7 +1145,6 @@ static int wma_decode_superframe(struct private_wmadec_data *pwd, void *data, ret = wma_decode_frame(pwd, samples); if (ret < 0) goto fail; - frame_count++; samples += pwd->ahi.channels * pwd->frame_len; } @@ -1171,12 +1168,10 @@ static int wma_decode_superframe(struct private_wmadec_data *pwd, void *data, ret = wma_decode_frame(pwd, samples); if (ret < 0) goto fail; - frame_count++; samples += pwd->ahi.channels * pwd->frame_len; } - PARA_DEBUG_LOG("frame_count: %d frame_len: %d, block_len: %d, " - "outbytes: %zd, eaten: %d\n", - frame_count, pwd->frame_len, pwd->block_len, + PARA_DEBUG_LOG("frame_len: %d, block_len: %d, outbytes: %zd, eaten: %d\n", + pwd->frame_len, pwd->block_len, (int8_t *) samples - (int8_t *) data, pwd->ahi.block_align); *data_size = (int8_t *)samples - (int8_t *)data; return pwd->ahi.block_align; -- 2.39.2