From e58d19666ee71630cbc267928b4f9cac1fa09580 Mon Sep 17 00:00:00 2001 From: Benny Prijono Date: Mon, 9 Apr 2007 07:06:08 +0000 Subject: Fixed all VS6 and VS8 projects with new third party projects layout git-svn-id: http://svn.pjsip.org/repos/pjproject/branches/split-3rd-party@1177 74dad513-b988-da41-8d7b-12977e46ad98 --- third_party/resample/include/resamplesubs.h | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 third_party/resample/include/resamplesubs.h (limited to 'third_party/resample/include/resamplesubs.h') diff --git a/third_party/resample/include/resamplesubs.h b/third_party/resample/include/resamplesubs.h new file mode 100644 index 00000000..76563b7b --- /dev/null +++ b/third_party/resample/include/resamplesubs.h @@ -0,0 +1,18 @@ +#ifndef __RESAMPLESUBS_H__ +#define __RESAMPLESUBS_H__ + +typedef char RES_BOOL; +typedef short RES_HWORD; +typedef int RES_WORD; +typedef unsigned short RES_UHWORD; +typedef unsigned int RES_UWORD; + +int res_SrcLinear(const RES_HWORD X[], RES_HWORD Y[], + double pFactor, RES_UHWORD nx); +int res_Resample(const RES_HWORD X[], RES_HWORD Y[], double pFactor, + RES_UHWORD nx, RES_BOOL LargeF, RES_BOOL Interp); +int res_GetXOFF(double pFactor, RES_BOOL LargeF); + + +#endif + -- cgit v1.2.3