summaryrefslogtreecommitdiff
path: root/pjmedia/src/pjmedia-codec/ilbc/hpOutput.h
diff options
context:
space:
mode:
authorBenny Prijono <bennylp@teluu.com>2006-07-31 15:25:14 +0000
committerBenny Prijono <bennylp@teluu.com>2006-07-31 15:25:14 +0000
commit2d507021e3078779c8b48c44c8881558f0ee6242 (patch)
treea9e27e7543b728242bca923417cdaf527b2d5515 /pjmedia/src/pjmedia-codec/ilbc/hpOutput.h
parentce9088d8978fdd457158ec0ea4c8e11e10b2960f (diff)
Really add the iLBC files into SVN now (duh!).
git-svn-id: http://svn.pjsip.org/repos/pjproject/trunk@638 74dad513-b988-da41-8d7b-12977e46ad98
Diffstat (limited to 'pjmedia/src/pjmedia-codec/ilbc/hpOutput.h')
-rw-r--r--pjmedia/src/pjmedia-codec/ilbc/hpOutput.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/pjmedia/src/pjmedia-codec/ilbc/hpOutput.h b/pjmedia/src/pjmedia-codec/ilbc/hpOutput.h
new file mode 100644
index 00000000..b213a193
--- /dev/null
+++ b/pjmedia/src/pjmedia-codec/ilbc/hpOutput.h
@@ -0,0 +1,24 @@
+
+ /******************************************************************
+
+ iLBC Speech Coder ANSI-C Source Code
+
+ hpOutput.h
+
+ Copyright (C) The Internet Society (2004).
+ All Rights Reserved.
+
+ ******************************************************************/
+
+ #ifndef __iLBC_HPOUTPUT_H
+ #define __iLBC_HPOUTPUT_H
+
+ void hpOutput(
+ float *In, /* (i) vector to filter */
+ int len,/* (i) length of vector to filter */
+ float *Out, /* (o) the resulting filtered vector */
+ float *mem /* (i/o) the filter state */
+ );
+
+ #endif
+