Ignore:
Timestamp:
12/29/06 15:21:35 (18 years ago)
Author:
r2d
Message:
  • moved libmpcdec includes in /mpc
  • removed mppdec.h and mpp.h
  • mpcenc defines cleanup
Location:
libmpc/branches/r2d/libmpcpsy
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • libmpc/branches/r2d/libmpcpsy/ans.c

    r194 r195  
    6262
    6363// calculates optimal reflection coefficients and time response of a prediction filter in LPC analysis
    64 static __inline void
     64static mpc_inline void
    6565durbin_akf_to_kh1( float*        k,     // out: reflection coefficients
    6666                   float*        h,     // out: time response
     
    7070}
    7171
    72 static __inline void
     72static mpc_inline void
    7373durbin_akf_to_kh2( float*        k,     // out: reflection coefficients
    7474                   float*        h,     // out: time response
     
    8383}
    8484
    85 static __inline void
     85static mpc_inline void
    8686durbin_akf_to_kh3( float*        k,     // out: reflection coefficients
    8787                   float*        h,     // out: time response
     
    104104
    105105
    106 static __inline void
     106static mpc_inline void
    107107durbin_akf_to_kh ( float*        k,     // out: reflection coefficients
    108108                   float*        h,     // out: time response
  • libmpc/branches/r2d/libmpcpsy/cvd.c

    r71 r195  
    222222#else
    223223
    224 static __inline float   /* This is a rough estimation with an accuracy of |x|<0.0037 */
     224static mpc_inline float   /* This is a rough estimation with an accuracy of |x|<0.0037 */
    225225logfast ( float x )
    226226{
  • libmpc/branches/r2d/libmpcpsy/fft4g.c

    r137 r195  
    2626static          void  makewt       ( const int nw, int* ip, float* w );
    2727static          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 );     // 5648
    33 // static __inline void  cftmdl_3DNow ( const int n, const int l, float* a, float* w );     // 4954
     28static mpc_inline void  bitrv2       ( const int n, int* ip, float* a );                   //
     29static mpc_inline void  cftfsub      ( const int n, float* a, float* w );                  //
     30static mpc_inline void  rftfsub      ( const int n, float* a, int nc, float* c );          //
     31static mpc_inline void  cft1st       ( const int n, float* a, float* w );                  //
     32static 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
    3434
    3535#if 0
     
    396396}
    397397
    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 );
    400400
    401401
Note: See TracChangeset for help on using the changeset viewer.