提交 2266c9b8 authored 作者: Michael Jerris's avatar Michael Jerris

formatting to quiet up some warnings


git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@4983 d0543943-73ff-0310-b7d9-9358b9ac24b2
上级 c92486f1
/******************************************************************
/******************************************************************
iLBC Speech Coder ANSI-C Source Code
iLBC Speech Coder ANSI-C Source Code
iLBC_decode.h
iLBC_decode.h
Copyright (C) The Internet Society (2004).
Copyright (C) The Internet Society (2004). All Rights Reserved.
All Rights Reserved.
******************************************************************/
******************************************************************/
#ifndef __iLBC_ILBCDECODE_H
#ifndef __iLBC_ILBCDECODE_H #define __iLBC_ILBCDECODE_H
#define __iLBC_ILBCDECODE_H
#include "iLBC_define.h"
#include "iLBC_define.h"
short initDecode( /* (o) Number of decoded samples */
short initDecode( /* (o) Number of decoded iLBC_Dec_Inst_t *iLBCdec_inst, /* (i/o) Decoder instance */
samples */ int mode, /* (i) frame size mode */
iLBC_Dec_Inst_t *iLBCdec_inst, /* (i/o) Decoder instance */ int use_enhancer /* (i) 1 to use enhancer 0 to run without enhancer */
int mode, /* (i) frame size mode */ );
int use_enhancer /* (i) 1 to use enhancer
0 to run without void iLBC_decode(
enhancer */ 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 */
void iLBC_decode( int mode /* (i) 0: bad packet, PLC, 1: normal */
float *decblock, /* (o) decoded signal block */ );
unsigned char *bytes, /* (i) encoded signal bits */
iLBC_Dec_Inst_t *iLBCdec_inst, /* (i/o) the decoder state #endif
structure */
int mode /* (i) 0: bad packet, PLC,
1: normal */
);
#endif
/****************************************************************** /******************************************************************
iLBC Speech Coder ANSI-C Source Code iLBC Speech Coder ANSI-C Source Code
iLBC_encode.h iLBC_encode.h
Copyright (C) The Internet Society (2004). Copyright (C) The Internet Society (2004).
All Rights Reserved. All Rights Reserved.
******************************************************************/ ******************************************************************/
#ifndef __iLBC_ILBCENCODE_H #ifndef __iLBC_ILBCENCODE_H
#define __iLBC_ILBCENCODE_H #define __iLBC_ILBCENCODE_H
#include "iLBC_define.h" #include "iLBC_define.h"
short initEncode( /* (o) Number of bytes short initEncode( /* (o) Number of bytes encoded */
encoded */ iLBC_Enc_Inst_t *iLBCenc_inst, /* (i/o) Encoder instance */
iLBC_Enc_Inst_t *iLBCenc_inst, /* (i/o) Encoder instance */ int mode /* (i) frame size mode */
int mode /* (i) frame size mode */ );
);
void iLBC_encode(
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 */
unsigned char *bytes, /* (o) encoded data bits iLBC */ );
float *block, /* (o) speech vector to
encode */ #endif
iLBC_Enc_Inst_t *iLBCenc_inst /* (i/o) the general encoder
state */
);
#endif
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论