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