summaryrefslogtreecommitdiffstats
path: root/libaf/af_surround.c
diff options
context:
space:
mode:
authoralex <alex@b3059339-0415-0410-9bf9-f77b7e298cf2>2004-12-29 19:50:44 +0000
committeralex <alex@b3059339-0415-0410-9bf9-f77b7e298cf2>2004-12-29 19:50:44 +0000
commit77456b04d9a3617ae0dc24c4dbac0f52017a8524 (patch)
treebadb4a4a31165cebbc66245d532aadffa10bf173 /libaf/af_surround.c
parent47e2a4ad80721634a320f35acbe98dec8073bd16 (diff)
downloadmpv-77456b04d9a3617ae0dc24c4dbac0f52017a8524.tar.bz2
mpv-77456b04d9a3617ae0dc24c4dbac0f52017a8524.tar.xz
less namespace pollution #2 (prefixed globals in filter.c with af_filter_)
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@14276 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libaf/af_surround.c')
-rw-r--r--libaf/af_surround.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libaf/af_surround.c b/libaf/af_surround.c
index e00c23f727..76b1b318e6 100644
--- a/libaf/af_surround.c
+++ b/libaf/af_surround.c
@@ -102,7 +102,7 @@ static int control(struct af_instance_s* af, int cmd, void* arg)
}
// 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;
}