提交 f6484f5b authored 作者: Seven Du's avatar Seven Du 提交者: Michael Jerris

FS-7517: add warning dropped from 0353e45 back in case it still happens

上级 a50789f9
......@@ -276,6 +276,12 @@ static switch_status_t nalu_slice(h264_codec_context_t *context, switch_frame_t
switch_assert(nalu_len > 0);
#ifdef MT_ENABLED
if (nalu_len > SLICE_SIZE) {
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_WARNING, "LARGE SLICE OVER MTU %d BYTES\n", nalu_len);
}
#endif
if (nalu_len <= SLICE_SIZE) {
uint8_t nalu_type;
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论