]> git.tuebingen.mpg.de Git - paraslash.git/blobdiff - wmadec_filter.c
compute_mdct_coefficients(): Kill pointless cast.
[paraslash.git] / wmadec_filter.c
index a404f35ddd12e556e1e0d65c9270798a764e01c3..f8ea4c83a9328776dd2eaf94f2ca6f5adffdfa94 100644 (file)
@@ -727,7 +727,7 @@ static void compute_mdct_coefficients(struct private_wmadec_data *pwd,
                int bsize, int total_gain, int nb_coefs[MAX_CHANNELS])
 {
        int ch;
-       float mdct_norm = 1.0 / (float)(pwd->block_len / 2);
+       float mdct_norm = 1.0 / (pwd->block_len / 2);
 
        for (ch = 0; ch < pwd->ahi.channels; ch++) {
                if (pwd->channel_coded[ch]) {