summaryrefslogtreecommitdiff
path: root/codecs/lpc10
diff options
context:
space:
mode:
authorMatteo Brancaleoni <mbrancaleoni@espia.it>2003-03-16 22:37:31 +0000
committerMatteo Brancaleoni <mbrancaleoni@espia.it>2003-03-16 22:37:31 +0000
commit61e446f04b2bdcc41f6420e3cf9ed466ed80c3ed (patch)
tree42e44ab95928950f65a80b2dd298dc79f9b82a8e /codecs/lpc10
parent7640e83360c2dfc792091caeaea05cc9fce0635c (diff)
dom mar 16 23:37:23 CET 2003
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@647 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'codecs/lpc10')
-rwxr-xr-xcodecs/lpc10/lpc10.h15
1 files changed, 9 insertions, 6 deletions
diff --git a/codecs/lpc10/lpc10.h b/codecs/lpc10/lpc10.h
index ef7d4eeac..314e2e35f 100755
--- a/codecs/lpc10/lpc10.h
+++ b/codecs/lpc10/lpc10.h
@@ -1,11 +1,14 @@
/*
$Log$
-Revision 1.14 2003/02/12 13:59:15 matteo
-mer feb 12 14:56:57 CET 2003
+Revision 1.15 2003/03/16 22:37:30 matteo
+dom mar 16 23:37:23 CET 2003
-Revision 1.1.1.1 2003/02/12 13:59:15 matteo
-mer feb 12 14:56:57 CET 2003
+Revision 1.1.1.2 2003/03/16 22:37:30 matteo
+dom mar 16 23:37:23 CET 2003
+
+Revision 1.2 2003/03/16 16:09:48 markster
+Mere James's cleanups for fewer build warnings
Revision 1.1 2000/01/05 00:20:06 markster
Add broken lpc10 code... It's not too far from working I don't think...
@@ -221,11 +224,11 @@ struct lpc10_decoder_state {
*/
-struct lpc10_encoder_state * create_lpc10_encoder_state ();
+struct lpc10_encoder_state * create_lpc10_encoder_state (void);
void init_lpc10_encoder_state (struct lpc10_encoder_state *st);
int lpc10_encode (real *speech, INT32 *bits, struct lpc10_encoder_state *st);
-struct lpc10_decoder_state * create_lpc10_decoder_state ();
+struct lpc10_decoder_state * create_lpc10_decoder_state (void);
void init_lpc10_decoder_state (struct lpc10_decoder_state *st);
int lpc10_decode (INT32 *bits, real *speech, struct lpc10_decoder_state *st);