mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-18 10:44:28 +00:00
I don't know how it worked earlier, but valgrind
produces core every time you try to load codec_g722. Fixed. ;-) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@54325 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -117,7 +117,7 @@ static struct ast_frame *g722tolin_sample(void)
|
||||
.frametype = AST_FRAME_VOICE,
|
||||
.subclass = AST_FORMAT_G722,
|
||||
.datalen = sizeof(g722_slin_ex),
|
||||
.samples = sizeof(g722_slin_ex),
|
||||
.samples = sizeof(g722_slin_ex) / sizeof(g722_slin_ex[0]),
|
||||
.src = __PRETTY_FUNCTION__,
|
||||
.data = g722_slin_ex,
|
||||
};
|
||||
@@ -131,7 +131,7 @@ static struct ast_frame *lintog722_sample (void)
|
||||
.frametype = AST_FRAME_VOICE,
|
||||
.subclass = AST_FORMAT_SLINEAR,
|
||||
.datalen = sizeof(slin_g722_ex),
|
||||
.samples = sizeof(slin_g722_ex),
|
||||
.samples = sizeof(slin_g722_ex) / sizeof(slin_g722_ex[0]),
|
||||
.src = __PRETTY_FUNCTION__,
|
||||
.data = slin_g722_ex,
|
||||
};
|
||||
|
Reference in New Issue
Block a user