for joy4 rtmp push onMetaData compatibility

This commit is contained in:
xgj 2021-06-08 10:07:51 +08:00
parent bb37bce3ac
commit 8721c5a62b

View File

@ -463,7 +463,10 @@ void RtmpSession::onRtmpChunk(RtmpPacket::Ptr packet) {
std::string type = dec.load<std::string>();
if (type == "@setDataFrame") {
setMetaData(dec);
} else {
} else if(type == "onMetaData"){
//setMetaData(dec);
_publisher_metadata = dec.load<AMFValue>();
}else {
TraceP(this) << "unknown notify:" << type;
}
break;