From 9aebd374d7e1d87dc9eb57bd34045ad82e60ef2a Mon Sep 17 00:00:00 2001 From: Andre Noll Date: Sat, 17 Oct 2009 18:01:04 +0200 Subject: [PATCH] More whitespace cleanups. --- wmadec_filter.c | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) 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; -- 2.39.2