From: Alexei Gradinari Date: Fri, 14 Jun 2019 20:45:39 +0000 (-0400) Subject: translate.c do not log WARNING on empty audio frame X-Git-Tag: 13.28.0-rc1~15^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3bfe1f3a1bb846c69b9aacc627faa7279772127f;p=thirdparty%2Fasterisk.git translate.c do not log WARNING on empty audio frame There is WARNING "no samples for ..." on each Playtones. The function ast_playtones_start calls ast_activate_generator, which calls ast_prod. The function ast_prod calls ast_write with empty audio frame. In this case it's spam log. Change-Id: Id4ac309489d9ff281bad02abdef341cecdede660 --- diff --git a/main/translate.c b/main/translate.c index a2d733dd05..68d2cdb05e 100644 --- a/main/translate.c +++ b/main/translate.c @@ -404,7 +404,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 */