]> git.tuebingen.mpg.de Git - paraslash.git/blobdiff - wmadec_filter.c
use free() instead of pointless freep() in imdct_end().
[paraslash.git] / wmadec_filter.c
index b26ab3b57f1f4223c4f558a95206d4219bcb9139..fdf312b981abe0fee30e92856a58dd87fee90250 100644 (file)
@@ -482,7 +482,7 @@ static int wma_decode_init(char *initial_buf, int len, struct private_wmadec_dat
                return ret;
        /* init MDCT */
        for (i = 0; i < s->nb_block_sizes; i++) {
-               ret = imdct_init(s->frame_len_bits - i + 1, 1, &s->mdct_ctx[i]);
+               ret = imdct_init(s->frame_len_bits - i + 1, &s->mdct_ctx[i]);
                if (ret < 0)
                        return ret;
        }