From 78b3a12d9cc943fa744b96cd15a68a826cea30bf Mon Sep 17 00:00:00 2001 From: Benjamin Larsson Date: Mon, 21 Sep 2009 20:53:29 +0000 Subject: [PATCH] Cosmetics, indentation. Originally committed as revision 19953 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/atrac1.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/atrac1.c b/libavcodec/atrac1.c index 00b01a53ad..c3f8cc0c9b 100644 --- a/libavcodec/atrac1.c +++ b/libavcodec/atrac1.c @@ -226,7 +226,7 @@ static int at1_unpack_dequant(GetBitContext* gb, AT1SUCtx* su, int num_specs = specs_per_bfu[bfu_num]; int word_len = !!idwls[bfu_num] + idwls[bfu_num]; float scale_factor = sf_table[idsfs[bfu_num]]; - bits_used += word_len * num_specs; /* add number of bits consumed by current BFU */ + bits_used += word_len * num_specs; /* add number of bits consumed by current BFU */ /* check for bitstream overflow */ if (bits_used > AT1_SU_MAX_BITS)