~ubuntu-branches/ubuntu/wily/sflphone/wily

« back to all changes in this revision

Viewing changes to daemon/libs/pjproject-2.1.0/third_party/resample/include/resamplesubs.h

  • Committer: Package Import Robot
  • Author(s): Jonathan Riddell
  • Date: 2015-01-07 14:51:16 UTC
  • mfrom: (4.3.5 sid)
  • Revision ID: package-import@ubuntu.com-20150107145116-yxnafinf4lrdvrmx
Tags: 1.4.1-0.1ubuntu1
* Merge with Debian, remaining changes:
 - Drop soprano, nepomuk build-dep
* Drop ubuntu patches, now upstream

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#ifndef __RESAMPLESUBS_H__
2
 
#define __RESAMPLESUBS_H__
3
 
 
4
 
typedef char           RES_BOOL;
5
 
typedef short          RES_HWORD;
6
 
typedef int            RES_WORD;
7
 
typedef unsigned short RES_UHWORD;
8
 
typedef unsigned int   RES_UWORD;
9
 
 
10
 
#ifdef _USRDLL
11
 
#   define DECL(T)  __declspec(dllexport) T
12
 
#else
13
 
#   define DECL(T)  T
14
 
#endif
15
 
 
16
 
#ifdef __cplusplus
17
 
extern "C"
18
 
{
19
 
#endif
20
 
 
21
 
DECL(int) res_SrcLinear(const RES_HWORD X[], RES_HWORD Y[], 
22
 
                        double pFactor, RES_UHWORD nx);
23
 
DECL(int) res_Resample(const RES_HWORD X[], RES_HWORD Y[], double pFactor, 
24
 
                       RES_UHWORD nx, RES_BOOL LargeF, RES_BOOL Interp);
25
 
DECL(int) res_GetXOFF(double pFactor, RES_BOOL LargeF);
26
 
 
27
 
#ifdef __cplusplus
28
 
}
29
 
#endif
30
 
 
31
 
#endif
32