diff libaf/af_surround.c @ 14275:de13fd557440

less namespace pollution #2 (prefixed globals in filter.c with af_filter_)
author alex
date Wed, 29 Dec 2004 19:50:44 +0000
parents 815f03b7cee5
children cea0eb833758
line wrap: on
line diff
--- a/libaf/af_surround.c	Wed Dec 29 19:41:21 2004 +0000
+++ b/libaf/af_surround.c	Wed Dec 29 19:50:44 2004 +0000
@@ -102,7 +102,7 @@
     }
     // Surround filer coefficients
     fc = 2.0 * 7000.0/(float)af->data->rate;
-    if (-1 == design_fir(L, s->w, &fc, LP|HAMMING, 0)){
+    if (-1 == af_filter_design_fir(L, s->w, &fc, LP|HAMMING, 0)){
       af_msg(AF_MSG_ERROR,"[surround] Unable to design low-pass filter.\n");
       return AF_ERROR;
     }