]> git.tuebingen.mpg.de Git - paraslash.git/blobdiff - compress_filter.c
string: Rename para_malloc() -> alloc().
[paraslash.git] / compress_filter.c
index 15bed6dfa33c896421ab17a89ec426669cf4b025..7bd3027105f95ba4ab1f3adf5d89ec2ad9722755 100644 (file)
@@ -66,7 +66,7 @@ next_buffer:
        if (inplace)
                op = ip;
        else
-               op = para_malloc(length);
+               op = alloc(length);
        for (i = 0; i < length / 2; i++) {
                /* be careful in that heat, my dear */
                int sample = *ip++;
@@ -79,7 +79,7 @@ next_buffer:
                sample *= pcd->current_gain;
                sample >>= inertia + 1;
                if (sample > 32767) { /* clip */
-                       PARA_WARNING_LOG("clip: %d\n", sample);
+                       PARA_NOTICE_LOG("clip: %d\n", sample);
                        sample = 32767;
                        pcd->current_gain = (3 * pcd->current_gain +
                                (1 << inertia)) / 4;