修复rtmp协议amf3不兼容的bug

This commit is contained in:
xiongziliang
2021-04-18 21:02:01 +08:00
parent c8e4c916bf
commit 7884338b60
3 changed files with 4 additions and 4 deletions

View File

@@ -354,7 +354,7 @@ void RtmpPlayer::onRtmpChunk(RtmpPacket::Ptr packet) {
case MSG_CMD3:
case MSG_DATA:
case MSG_DATA3: {
AMFDecoder dec(chunk_data.buffer, 0);
AMFDecoder dec(chunk_data.buffer, 0, (chunk_data.type_id == MSG_DATA3 || chunk_data.type_id == MSG_CMD3) ? 3 : 0);
std::string type = dec.load<std::string>();
auto it = s_func_map.find(type);
if (it != s_func_map.end()) {