From: Andre Noll Date: Sat, 17 Oct 2009 16:01:04 +0000 (+0200) Subject: More whitespace cleanups. X-Git-Tag: v0.4.1~84 X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=commitdiff_plain;h=9aebd374d7e1d87dc9eb57bd34045ad82e60ef2a More whitespace cleanups. --- diff --git a/wmadec_filter.c b/wmadec_filter.c index 0565a14b..3d8a7280 100644 --- a/wmadec_filter.c +++ b/wmadec_filter.c @@ -9,7 +9,7 @@ * For licencing details see COPYING.LIB. */ -/** * \file wmadec_filter.c paraslash's WMA decoder. */ +/** \file wmadec_filter.c paraslash's WMA decoder. */ /* * This decoder handles Microsoft Windows Media Audio data version 2. @@ -129,7 +129,7 @@ struct private_wmadec_data { #define HGAINMAX ((13 + HGAINVLCBITS - 1) / HGAINVLCBITS) #define VLCBITS 9 -#define VLCMAX ((22 + VLCBITS - 1)/VLCBITS) +#define VLCMAX ((22 + VLCBITS - 1) / VLCBITS) DECLARE_ALIGNED(16, float, ff_sine_128[128]); DECLARE_ALIGNED(16, float, ff_sine_256[256]); @@ -158,7 +158,6 @@ static int wmadec_cleanup(struct private_wmadec_data *s) for (i = 0; i < s->nb_block_sizes; i++) imdct_end(s->mdct_ctx[i]); - if (s->use_exp_vlc) free_vlc(&s->exp_vlc); if (s->use_noise_coding) @@ -309,9 +308,8 @@ static int wma_init(struct private_wmadec_data *s, int flags2, struct asf_header if (nb > nb_max) nb = nb_max; s->nb_block_sizes = nb + 1; - } else { + } else s->nb_block_sizes = 1; - } /* init rate dependent parameters */ s->use_noise_coding = 1;