diff options
author | Benjamin Larsson | 2009-09-21 20:53:29 +0000 |
---|---|---|
committer | Benjamin Larsson | 2009-09-21 20:53:29 +0000 |
commit | 78b3a12d9cc943fa744b96cd15a68a826cea30bf (patch) | |
tree | aa55acd4bf10c93a646880b16276576bfd0c6ddc /libavcodec/atrac1.c | |
parent | a872e5c1f4bdb3bf62264d580b1b857eeff1dc1a (diff) |
Cosmetics, indentation.
Originally committed as revision 19953 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/atrac1.c')
-rw-r--r-- | libavcodec/atrac1.c | 2 |
1 files changed, 1 insertions, 1 deletions
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) |