From 1e21c5642696a7c9d7182f50e74051c1a1efec95 Mon Sep 17 00:00:00 2001 From: "Kevin P. Fleming" Date: Fri, 14 Oct 2005 00:03:41 +0000 Subject: [PATCH] use existing sample size in frame instead of recalculating it (issue #5390) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6781 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- rtp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rtp.c b/rtp.c index 78cdfb09a9..468445e5f4 100755 --- a/rtp.c +++ b/rtp.c @@ -1231,7 +1231,7 @@ static int ast_rtp_raw_write(struct ast_rtp *rtp, struct ast_frame *f, int codec ms = calc_txstamp(rtp, &f->delivery); /* Default prediction */ if (f->subclass < AST_FORMAT_MAX_AUDIO) { - pred = rtp->lastts + ast_codec_get_samples(f); + pred = rtp->lastts + f->samples; /* Re-calculate last TS */ rtp->lastts = rtp->lastts + ms * 8;