Fixup fromcvs/togit conversion
[minix-pkgsrc.git] / audio / libvisual-plugins / patches / patch-ab
blob2d6dd4722be829cd2e47c38b4a8bb6f89fc2a20e
1 $NetBSD$
3 --- plugins/actor/pseudotoad_flower/notch.c.orig        Thu Jun 16 22:50:58 2005
4 +++ plugins/actor/pseudotoad_flower/notch.c     Thu Jun 16 22:52:05 2005
5 @@ -25,12 +25,13 @@
6  #include <stdio.h>
7  #include <math.h>
8  #include <string.h>
9 +#include <stdlib.h>
11  #include "notch.h"
13  NOTCH_FILTER *  init_notch(float cutoff) {
14      NOTCH_FILTER * l=malloc(sizeof(NOTCH_FILTER));
15 -    float steep = 0.99;;
16 +    float steep = 0.99;
17      float r = steep * 0.99609375;
18      float f = cos(M_PI * cutoff / SAMPLING_RATE);
19      l->cutoff = cutoff;