]> git.tuebingen.mpg.de Git - paraslash.git/blobdiff - mp3dec_filter.c
string: Rename para_malloc() -> alloc().
[paraslash.git] / mp3dec_filter.c
index ccb1553b820357e13f2cafe2c0e8a7e0502ac8fd..69112c76c6fe49dffd78917b804e1e2b8f41daa2 100644 (file)
@@ -144,7 +144,7 @@ decode:
        }
        fn->min_iqs = 0;
        mad_synth_frame(&pmd->synth, &pmd->frame);
-       outbuffer = para_malloc(pmd->synth.pcm.length * 2 * pmd->channels);
+       outbuffer = alloc(pmd->synth.pcm.length * 2 * pmd->channels);
        loaded = 0;
        for (i = 0; i < pmd->synth.pcm.length; i++) {
                int sample = MAD_TO_SHORT(pmd->synth.pcm.samples[0][i]);