Commit a275ff7e authored by Michael Niedermayer's avatar Michael Niedermayer

Merge commit '92ed83e3'

* commit '92ed83e3':
  rtmp: Store all the notify messages
Merged-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parents 9589b619 92ed83e3
......@@ -2085,10 +2085,9 @@ static int handle_notify(URLContext *s, RTMPPacket *pkt) {
if (ff_amf_read_string(&gbc, statusmsg,
sizeof(statusmsg), &stringlen))
return AVERROR_INVALIDDATA;
if (strcmp(statusmsg, "onMetaData")) {
av_log(s, AV_LOG_INFO, "Expecting onMetadata but got %s\n",
statusmsg);
return 0;
} else {
datatowrite = pkt->data;
datatowritelength = pkt->size;
}
/* Provide ECMAArray to flv */
......@@ -2117,7 +2116,7 @@ static int handle_notify(URLContext *s, RTMPPacket *pkt) {
bytestream2_put_be24(&pbc, 0);
bytestream2_put_buffer(&pbc, datatowrite, datatowritelength);
bytestream2_put_be32(&pbc, 0);
}
return 0;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment