]> git.tuebingen.mpg.de Git - paraslash.git/commitdiff
More whitespace cleanups.
authorAndre Noll <maan@systemlinux.org>
Sat, 17 Oct 2009 16:01:04 +0000 (18:01 +0200)
committerAndre Noll <maan@systemlinux.org>
Wed, 18 Nov 2009 18:34:17 +0000 (19:34 +0100)
wmadec_filter.c

index 0565a14bfaac6e0353fd5eac89b23666c03a1282..3d8a72800d42729792be719113f205e1d0e496da 100644 (file)
@@ -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;