summaryrefslogtreecommitdiffstats
path: root/libaf/filter.c
diff options
context:
space:
mode:
authoruau <uau@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-11-01 06:52:10 +0000
committeruau <uau@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-11-01 06:52:10 +0000
commit5bfedc0a2d9331a6b2205aaebed4739e882771ea (patch)
tree0a8dc5c3b696bd2e6aaf83b0ecb60aa9b40d1ddf /libaf/filter.c
parentab2237c15a7d7fe119a6ca471dcdb427e1dfeeec (diff)
downloadmpv-5bfedc0a2d9331a6b2205aaebed4739e882771ea.tar.bz2
mpv-5bfedc0a2d9331a6b2205aaebed4739e882771ea.tar.xz
Remove some pointless 'inline' qualifiers
Most of these functions aren't even used in the same translation unit. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24918 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libaf/filter.c')
-rw-r--r--libaf/filter.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libaf/filter.c b/libaf/filter.c
index a637bb6df3..c9514edfe1 100644
--- a/libaf/filter.c
+++ b/libaf/filter.c
@@ -46,7 +46,7 @@ inline _ftype_t af_filter_fir(register unsigned int n, _ftype_t* w, _ftype_t* x)
y output buffer
s output buffer stride
*/
-inline _ftype_t* af_filter_pfir(unsigned int n, unsigned int d, unsigned int xi, _ftype_t** w, _ftype_t** x, _ftype_t* y, unsigned int s)
+_ftype_t* af_filter_pfir(unsigned int n, unsigned int d, unsigned int xi, _ftype_t** w, _ftype_t** x, _ftype_t* y, unsigned int s)
{
register _ftype_t* xt = *x + xi;
register _ftype_t* wt = *w;
@@ -65,7 +65,7 @@ inline _ftype_t* af_filter_pfir(unsigned int n, unsigned int d, unsigned int xi,
at the new samples, xi current index in xq and n the length of the
filter. xq must be n*2 by k big, s is the index for in.
*/
-inline int af_filter_updatepq(unsigned int n, unsigned int d, unsigned int xi, _ftype_t** xq, _ftype_t* in, unsigned int s)
+int af_filter_updatepq(unsigned int n, unsigned int d, unsigned int xi, _ftype_t** xq, _ftype_t* in, unsigned int s)
{
register _ftype_t* txq = *xq + xi;
register int nt = n*2;