summaryrefslogtreecommitdiffstats
path: root/libaf/af_resample.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_resample.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_resample.c')
-rw-r--r--libaf/af_resample.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libaf/af_resample.c b/libaf/af_resample.c
index 00d06fa8ec..4611d103da 100644
--- a/libaf/af_resample.c
+++ b/libaf/af_resample.c
@@ -245,7 +245,7 @@ static int control(struct af_instance_s* af, int cmd, void* arg)
// Design prototype filter type using Kaiser window with beta = 10
if(NULL == w || NULL == s->w ||
- -1 == design_fir(s->up*L, w, &fc, LP|KAISER , 10.0)){
+ -1 == af_filter_design_fir(s->up*L, w, &fc, LP|KAISER , 10.0)){
af_msg(AF_MSG_ERROR,"[resample] Unable to design prototype filter.\n");
return AF_ERROR;
}