formatting to quiet up some warnings

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@4983 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Michael Jerris 2007-04-20 01:57:56 +00:00
parent c92486f19b
commit 2266c9b89e
3 changed files with 264 additions and 279 deletions

View File

@ -1,4 +1,3 @@
/******************************************************************
iLBC Speech Coder ANSI-C Source Code
@ -15,26 +14,17 @@
#include "iLBC_define.h"
short initDecode( /* (o) Number of decoded
samples */
short initDecode( /* (o) Number of decoded samples */
iLBC_Dec_Inst_t *iLBCdec_inst, /* (i/o) Decoder instance */
int mode, /* (i) frame size mode */
int use_enhancer /* (i) 1 to use enhancer
0 to run without
enhancer */
int use_enhancer /* (i) 1 to use enhancer 0 to run without enhancer */
);
void iLBC_decode(
float *decblock, /* (o) decoded signal block */
unsigned char *bytes, /* (i) encoded signal bits */
iLBC_Dec_Inst_t *iLBCdec_inst, /* (i/o) the decoder state
structure */
int mode /* (i) 0: bad packet, PLC,
1: normal */
iLBC_Dec_Inst_t *iLBCdec_inst, /* (i/o) the decoder state structure */
int mode /* (i) 0: bad packet, PLC, 1: normal */
);
#endif

View File

@ -15,20 +15,15 @@
#include "iLBC_define.h"
short initEncode( /* (o) Number of bytes
encoded */
short initEncode( /* (o) Number of bytes encoded */
iLBC_Enc_Inst_t *iLBCenc_inst, /* (i/o) Encoder instance */
int mode /* (i) frame size mode */
);
void iLBC_encode(
unsigned char *bytes, /* (o) encoded data bits iLBC */
float *block, /* (o) speech vector to
encode */
iLBC_Enc_Inst_t *iLBCenc_inst /* (i/o) the general encoder
state */
float *block, /* (o) speech vector to encode */
iLBC_Enc_Inst_t *iLBCenc_inst /* (i/o) the general encoder state */
);
#endif