Merge "translate.c do not log WARNING on empty audio frame" into 16

This commit is contained in:
Friendly Automation 2019-06-21 10:37:49 -05:00 committed by Gerrit Code Review
commit 25c6890864
1 changed files with 4 additions and 1 deletions

View File

@ -402,7 +402,10 @@ static int framein(struct ast_trans_pvt *pvt, struct ast_frame *f)
pvt->f.seqno = f->seqno;
if (f->samples == 0) {
ast_log(LOG_WARNING, "no samples for %s\n", pvt->t->name);
/* Do not log empty audio frame */
if (strcasecmp(f->src, "ast_prod")) {
ast_log(LOG_WARNING, "no samples for %s\n", pvt->t->name);
}
}
if (pvt->t->buffer_samples) { /* do not pass empty frames to callback */
if (f->datalen == 0) { /* perform native PLC if available */