修复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

@@ -292,7 +292,7 @@ void RtmpPusher::onRtmpChunk(RtmpPacket::Ptr packet) {
g_mapCmd.emplace("onStatus", &RtmpPusher::onCmd_onStatus);
});
AMFDecoder dec(chunk_data.buffer, 0);
AMFDecoder dec(chunk_data.buffer, 0, chunk_data.type_id == MSG_CMD3 ? 3 : 0);
std::string type = dec.load<std::string>();
auto it = g_mapCmd.find(type);
if (it != g_mapCmd.end()) {