summaryrefslogtreecommitdiff
path: root/main/translate.c
diff options
context:
space:
mode:
authorAlexander Traud <pabstraud@compuserve.com>2015-12-08 10:46:21 +0100
committerAlexander Traud <pabstraud@compuserve.com>2015-12-08 03:51:18 -0600
commit69e3d40ad74883db9bb9b34d6aed71a536e8cf3c (patch)
treefe3cbd348ab2fa67dd25af62c253f13b20608d41 /main/translate.c
parent2b992014dcf8f1d343e95a06868d4ebd14619d33 (diff)
translate: Avoid a warning message when doing FEC within Opus Codec.
ASTERISK-25616 #close Change-Id: Ibe729aaf2e6e25506cff247cec5149ec1e589319
Diffstat (limited to 'main/translate.c')
-rw-r--r--main/translate.c10
1 files changed, 1 insertions, 9 deletions
diff --git a/main/translate.c b/main/translate.c
index 44cfa2bb9..6a39bac1a 100644
--- a/main/translate.c
+++ b/main/translate.c
@@ -397,9 +397,6 @@ static struct ast_trans_pvt *newpvt(struct ast_translator *t, struct ast_format
/*! \brief framein wrapper, deals with bound checks. */
static int framein(struct ast_trans_pvt *pvt, struct ast_frame *f)
{
- int ret;
- int samples = pvt->samples; /* initial value */
-
/* Copy the last in jb timing info to the pvt */
ast_copy_flags(&pvt->f, f, AST_FRFLAG_HAS_TIMING_INFO);
pvt->f.ts = f->ts;
@@ -423,12 +420,7 @@ static int framein(struct ast_trans_pvt *pvt, struct ast_frame *f)
/* we require a framein routine, wouldn't know how to do
* it otherwise.
*/
- ret = pvt->t->framein(pvt, f);
- /* diagnostic ... */
- if (pvt->samples == samples)
- ast_log(LOG_WARNING, "%s did not update samples %d\n",
- pvt->t->name, pvt->samples);
- return ret;
+ return pvt->t->framein(pvt, f);
}
/*! \brief generic frameout routine.