Changeset 195 for libmpc/branches/r2d/libmpcpsy
- Timestamp:
- 12/29/06 15:21:35 (18 years ago)
- Location:
- libmpc/branches/r2d/libmpcpsy
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
libmpc/branches/r2d/libmpcpsy/ans.c
r194 r195 62 62 63 63 // calculates optimal reflection coefficients and time response of a prediction filter in LPC analysis 64 static __inline void64 static mpc_inline void 65 65 durbin_akf_to_kh1( float* k, // out: reflection coefficients 66 66 float* h, // out: time response … … 70 70 } 71 71 72 static __inline void72 static mpc_inline void 73 73 durbin_akf_to_kh2( float* k, // out: reflection coefficients 74 74 float* h, // out: time response … … 83 83 } 84 84 85 static __inline void85 static mpc_inline void 86 86 durbin_akf_to_kh3( float* k, // out: reflection coefficients 87 87 float* h, // out: time response … … 104 104 105 105 106 static __inline void106 static mpc_inline void 107 107 durbin_akf_to_kh ( float* k, // out: reflection coefficients 108 108 float* h, // out: time response -
libmpc/branches/r2d/libmpcpsy/cvd.c
r71 r195 222 222 #else 223 223 224 static __inline float /* This is a rough estimation with an accuracy of |x|<0.0037 */224 static mpc_inline float /* This is a rough estimation with an accuracy of |x|<0.0037 */ 225 225 logfast ( float x ) 226 226 { -
libmpc/branches/r2d/libmpcpsy/fft4g.c
r137 r195 26 26 static void makewt ( const int nw, int* ip, float* w ); 27 27 static void makect ( const int nc, int* ip, float* c ); 28 static __inline void bitrv2 ( const int n, int* ip, float* a ); //29 static __inline void cftfsub ( const int n, float* a, float* w ); //30 static __inline void rftfsub ( const int n, float* a, int nc, float* c ); //31 static __inline void cft1st ( const int n, float* a, float* w ); //32 static __inline void cftmdl_i386 ( const int n, const int l, float* a, float* w ); // 564833 // static __inline void cftmdl_3DNow ( const int n, const int l, float* a, float* w ); // 495428 static mpc_inline void bitrv2 ( const int n, int* ip, float* a ); // 29 static mpc_inline void cftfsub ( const int n, float* a, float* w ); // 30 static mpc_inline void rftfsub ( const int n, float* a, int nc, float* c ); // 31 static mpc_inline void cft1st ( const int n, float* a, float* w ); // 32 static mpc_inline void cftmdl_i386 ( const int n, const int l, float* a, float* w ); // 5648 33 // static mpc_inline void cftmdl_3DNow ( const int n, const int l, float* a, float* w ); // 4954 34 34 35 35 #if 0 … … 396 396 } 397 397 398 // extern void Cdecl cftmdl_3DNow_1 ( const int n, const int l, float* a, float* w );399 // extern void Cdecl cftmdl_3DNow_2 ( const int n, const int l, float* a, float* w );398 // extern void mpc_cdecl cftmdl_3DNow_1 ( const int n, const int l, float* a, float* w ); 399 // extern void mpc_cdecl cftmdl_3DNow_2 ( const int n, const int l, float* a, float* w ); 400 400 401 401
Note: See TracChangeset
for help on using the changeset viewer.