mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-05 20:20:07 +00:00
dom mar 16 23:37:23 CET 2003
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@647 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -66,7 +66,7 @@ struct ast_translator_pvt {
|
||||
|
||||
#define lpc10_coder_pvt ast_translator_pvt
|
||||
|
||||
static struct ast_translator_pvt *lpc10_enc_new()
|
||||
static struct ast_translator_pvt *lpc10_enc_new(void)
|
||||
{
|
||||
struct lpc10_coder_pvt *tmp;
|
||||
tmp = malloc(sizeof(struct lpc10_coder_pvt));
|
||||
@@ -82,7 +82,7 @@ static struct ast_translator_pvt *lpc10_enc_new()
|
||||
return tmp;
|
||||
}
|
||||
|
||||
static struct ast_translator_pvt *lpc10_dec_new()
|
||||
static struct ast_translator_pvt *lpc10_dec_new(void)
|
||||
{
|
||||
struct lpc10_coder_pvt *tmp;
|
||||
tmp = malloc(sizeof(struct lpc10_coder_pvt));
|
||||
@@ -97,7 +97,7 @@ static struct ast_translator_pvt *lpc10_dec_new()
|
||||
}
|
||||
return tmp;
|
||||
}
|
||||
static struct ast_frame *lintolpc10_sample()
|
||||
static struct ast_frame *lintolpc10_sample(void)
|
||||
{
|
||||
static struct ast_frame f;
|
||||
f.frametype = AST_FRAME_VOICE;
|
||||
@@ -112,7 +112,7 @@ static struct ast_frame *lintolpc10_sample()
|
||||
return &f;
|
||||
}
|
||||
|
||||
static struct ast_frame *lpc10tolin_sample()
|
||||
static struct ast_frame *lpc10tolin_sample(void)
|
||||
{
|
||||
static struct ast_frame f;
|
||||
f.frametype = AST_FRAME_VOICE;
|
||||
|
Reference in New Issue
Block a user