提交 8c21dcf2 authored 作者: Seven Du's avatar Seven Du

FS-8836 #comment WIP codec should working now

上级 a3e31615
...@@ -766,8 +766,8 @@ static switch_status_t consume_nalu(h264_codec_context_t *context, switch_frame_ ...@@ -766,8 +766,8 @@ static switch_status_t consume_nalu(h264_codec_context_t *context, switch_frame_
return SWITCH_STATUS_MORE_DATA; return SWITCH_STATUS_MORE_DATA;
} }
frame->m = 1; frame->m = context->nalus[context->nalu_current_index].len ? 0 : 1;
return SWITCH_STATUS_SUCCESS; return frame->m ? SWITCH_STATUS_SUCCESS : SWITCH_STATUS_MORE_DATA;
} else { } else {
uint8_t nalu_hdr = *(uint8_t *)(nalu->start); uint8_t nalu_hdr = *(uint8_t *)(nalu->start);
uint8_t nri = nalu_hdr & 0x60; uint8_t nri = nalu_hdr & 0x60;
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论