summaryrefslogtreecommitdiff
path: root/third_party/build/resample/resamplesubs.h
diff options
context:
space:
mode:
authorBenny Prijono <bennylp@teluu.com>2007-04-07 14:53:15 +0000
committerBenny Prijono <bennylp@teluu.com>2007-04-07 14:53:15 +0000
commitca07a9833149d270d1e5b44cfa381ac6ac03e39c (patch)
tree0d1297c8326f76aec00e068795ed1505047c63a7 /third_party/build/resample/resamplesubs.h
parent81d1b2797aa3945c529d57f9ddf6179ec2b392a4 (diff)
Moved resample to third_party directory
git-svn-id: http://svn.pjsip.org/repos/pjproject/branches/split-3rd-party@1170 74dad513-b988-da41-8d7b-12977e46ad98
Diffstat (limited to 'third_party/build/resample/resamplesubs.h')
-rw-r--r--third_party/build/resample/resamplesubs.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/third_party/build/resample/resamplesubs.h b/third_party/build/resample/resamplesubs.h
new file mode 100644
index 00000000..825df971
--- /dev/null
+++ b/third_party/build/resample/resamplesubs.h
@@ -0,0 +1,23 @@
+
+int
+ SrcLinear(short X[], short Y[], double factor, unsigned int *Time, unsigned short Nx);
+
+int SrcUp(short X[], short Y[], double factor, unsigned int *Time,
+ unsigned short Nx, unsigned short Nwing, unsigned short LpScl,
+ short Imp[], short ImpD[], char Interp);
+
+int SrcUD(short X[], short Y[], double factor, unsigned int *Time,
+ unsigned short Nx, unsigned short Nwing, unsigned short LpScl,
+ short Imp[], short ImpD[], char Interp);
+
+extern unsigned resample_LARGE_FILTER_NMULT;
+extern unsigned resample_LARGE_FILTER_NWING;
+extern unsigned resample_LARGE_FILTER_SCALE;
+extern short* resample_LARGE_FILTER_IMP;
+extern short* resample_LARGE_FILTER_IMPD;
+
+extern unsigned resample_SMALL_FILTER_NMULT;
+extern unsigned resample_SMALL_FILTER_NWING;
+extern unsigned resample_SMALL_FILTER_SCALE;
+extern short* resample_SMALL_FILTER_IMP;
+extern short* resample_SMALL_FILTER_IMPD;