Browse Source

TT#14008 rate limit log line about missing output context

closes #1259

Change-Id: I0777647a8f6974fca845b4c35591bc7539f4891b
(cherry picked from commit 2057d0a367)
mr9.4
Richard Fuchs 5 years ago
parent
commit
78b6d5167f
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      daemon/codec.c

+ 2
- 1
daemon/codec.c View File

@ -1954,7 +1954,8 @@ static struct codec_ssrc_handler *__output_ssrc_handler(struct codec_ssrc_handle
handler = handler->output_handler;
struct codec_ssrc_handler *new_ch = get_ssrc(mp->ssrc_in->parent->h.ssrc, handler->ssrc_hash);
if (G_UNLIKELY(!new_ch)) {
ilogs(transcoding, LOG_ERR, "Switched from input to output codec context, but no codec handler present");
ilogs(transcoding, LOG_ERR | LOG_FLAG_LIMIT,
"Switched from input to output codec context, but no codec handler present");
obj_get(&ch->h);
return ch;
}


Loading…
Cancel
Save