diff libaf/filter.c @ 24890:a54a25221b79

Remove some pointless 'inline' qualifiers Most of these functions aren't even used in the same translation unit.
author uau
date Thu, 01 Nov 2007 06:52:10 +0000
parents 36db63e8e5d7
children 07abe94a9cc4
line wrap: on
line diff
--- a/libaf/filter.c	Thu Nov 01 06:52:06 2007 +0000
+++ b/libaf/filter.c	Thu Nov 01 06:52:10 2007 +0000
@@ -46,7 +46,7 @@
    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 @@
    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;