Skip to content
Snippets Groups Projects
Commit 69e3d40a authored by Alexander Traud's avatar Alexander Traud
Browse files

translate: Avoid a warning message when doing FEC within Opus Codec.

ASTERISK-25616 #close

Change-Id: Ibe729aaf2e6e25506cff247cec5149ec1e589319
parent 2b992014
Branches
Tags
No related merge requests found
...@@ -397,9 +397,6 @@ static struct ast_trans_pvt *newpvt(struct ast_translator *t, struct ast_format ...@@ -397,9 +397,6 @@ static struct ast_trans_pvt *newpvt(struct ast_translator *t, struct ast_format
/*! \brief framein wrapper, deals with bound checks. */ /*! \brief framein wrapper, deals with bound checks. */
static int framein(struct ast_trans_pvt *pvt, struct ast_frame *f) 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 */ /* Copy the last in jb timing info to the pvt */
ast_copy_flags(&pvt->f, f, AST_FRFLAG_HAS_TIMING_INFO); ast_copy_flags(&pvt->f, f, AST_FRFLAG_HAS_TIMING_INFO);
pvt->f.ts = f->ts; pvt->f.ts = f->ts;
...@@ -423,12 +420,7 @@ static int framein(struct ast_trans_pvt *pvt, struct ast_frame *f) ...@@ -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 /* we require a framein routine, wouldn't know how to do
* it otherwise. * it otherwise.
*/ */
ret = pvt->t->framein(pvt, f); return 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;
} }
/*! \brief generic frameout routine. /*! \brief generic frameout routine.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment