aboutsummaryrefslogtreecommitdiffstats
path: root/codecs/codec_g723_1.c
diff options
context:
space:
mode:
authormarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2002-12-11 00:23:03 +0000
committermarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2002-12-11 00:23:03 +0000
commit95516e2d7db816de733f04e81833a770be7a7cd8 (patch)
tree283e769f88284b6106219690d30231606ad8cef3 /codecs/codec_g723_1.c
parentc791e0d15a494431933106040f050acdde916918 (diff)
Version 0.3.0 from FTP
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@567 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'codecs/codec_g723_1.c')
-rwxr-xr-xcodecs/codec_g723_1.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/codecs/codec_g723_1.c b/codecs/codec_g723_1.c
index 1d655551d..e8fd71198 100755
--- a/codecs/codec_g723_1.c
+++ b/codecs/codec_g723_1.c
@@ -113,7 +113,7 @@ static struct ast_frame *lintog723_sample()
f.subclass = AST_FORMAT_SLINEAR;
f.datalen = sizeof(slin_g723_ex);
/* Assume 8000 Hz */
- f.timelen = sizeof(slin_g723_ex)/16;
+ f.samples = sizeof(slin_g723_ex)/16;
f.mallocd = 0;
f.offset = 0;
f.src = __PRETTY_FUNCTION__;
@@ -128,7 +128,7 @@ static struct ast_frame *g723tolin_sample()
f.subclass = AST_FORMAT_G723_1;
f.datalen = sizeof(g723_slin_ex);
/* All frames are 30 ms long */
- f.timelen = 30;
+ f.samples = 30;
f.mallocd = 0;
f.offset = 0;
f.src = __PRETTY_FUNCTION__;
@@ -165,7 +165,7 @@ static struct ast_frame *g723tolin_frameout(struct ast_translator_pvt *pvt)
tmp->f.subclass = AST_FORMAT_SLINEAR;
tmp->f.datalen = tmp->tail * 2;
/* Assume 8000 Hz */
- tmp->f.timelen = tmp->tail / 8;
+ tmp->f.samples = tmp->tail / 8;
tmp->f.mallocd = 0;
tmp->f.offset = AST_FRIENDLY_OFFSET;
tmp->f.src = __PRETTY_FUNCTION__;
@@ -276,7 +276,7 @@ static struct ast_frame *lintog723_frameout(struct ast_translator_pvt *pvt)
tmp->f.subclass = AST_FORMAT_G723_1;
tmp->f.offset = AST_FRIENDLY_OFFSET;
tmp->f.src = __PRETTY_FUNCTION__;
- tmp->f.timelen = 0;
+ tmp->f.samples = 0;
tmp->f.mallocd = 0;
while(tmp->tail >= Frame) {
/* Encode a frame of data */
@@ -292,7 +292,7 @@ static struct ast_frame *lintog723_frameout(struct ast_translator_pvt *pvt)
Coder(&tmp->cod, tmp->buf, tmp->outbuf + cnt);
#endif
/* Assume 8000 Hz */
- tmp->f.timelen += 30;
+ tmp->f.samples += 30;
cnt += g723_len(tmp->outbuf[0]);
tmp->tail -= Frame;
/* Move the data at the end of the buffer to the front */