blob: c81d715a22ca83e19e0d53500d1d2a541850e876 [file] [log] [blame]
Benny Prijonoc95a0f02007-04-09 07:06:08 +00001#ifndef __RESAMPLESUBS_H__
2#define __RESAMPLESUBS_H__
3
4typedef char RES_BOOL;
5typedef short RES_HWORD;
6typedef int RES_WORD;
7typedef unsigned short RES_UHWORD;
8typedef unsigned int RES_UWORD;
9
Benny Prijono4fb32b52007-04-30 09:02:46 +000010#ifdef _USRDLL
11# define DECL(T) __declspec(dllexport) T
12#else
13# define DECL(T) T
14#endif
15
Nanang Izzuddin54ad7972009-07-14 13:45:52 +000016#ifdef __cplusplus
17extern "C"
18{
19#endif
20
Benny Prijono4fb32b52007-04-30 09:02:46 +000021DECL(int) res_SrcLinear(const RES_HWORD X[], RES_HWORD Y[],
22 double pFactor, RES_UHWORD nx);
23DECL(int) res_Resample(const RES_HWORD X[], RES_HWORD Y[], double pFactor,
24 RES_UHWORD nx, RES_BOOL LargeF, RES_BOOL Interp);
25DECL(int) res_GetXOFF(double pFactor, RES_BOOL LargeF);
Benny Prijonoc95a0f02007-04-09 07:06:08 +000026
Nanang Izzuddin54ad7972009-07-14 13:45:52 +000027#ifdef __cplusplus
28}
29#endif
Benny Prijonoc95a0f02007-04-09 07:06:08 +000030
31#endif
32