Ignore:
Timestamp:
Apr 30, 2007 9:02:46 AM (17 years ago)
Author:
bennylp
Message:

Added resample DLL project

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/third_party/resample/src/resamplesubs.c

    r1177 r1232  
    320320 
    321321 
    322 int res_SrcLinear(const RES_HWORD X[], RES_HWORD Y[],  
    323                   double pFactor, RES_UHWORD nx) 
     322DECL(int) res_SrcLinear(const RES_HWORD X[], RES_HWORD Y[],  
     323                        double pFactor, RES_UHWORD nx) 
    324324{ 
    325325    return SrcLinear(X, Y, pFactor, nx); 
    326326} 
    327327 
    328 int res_Resample(const RES_HWORD X[], RES_HWORD Y[], double pFactor,  
    329                  RES_UHWORD nx, RES_BOOL LargeF, RES_BOOL Interp) 
     328DECL(int) res_Resample(const RES_HWORD X[], RES_HWORD Y[], double pFactor,  
     329                       RES_UHWORD nx, RES_BOOL LargeF, RES_BOOL Interp) 
    330330{ 
    331331    if (pFactor >= 1) { 
     
    354354} 
    355355 
    356 int res_GetXOFF(double pFactor, RES_BOOL LargeF) 
     356DECL(int) res_GetXOFF(double pFactor, RES_BOOL LargeF) 
    357357{ 
    358358    if (LargeF) 
Note: See TracChangeset for help on using the changeset viewer.