Commit 1c7d2870 authored by Michael Niedermayer's avatar Michael Niedermayer

Merge commit '89564be4'

* commit '89564be4':
  rtmpproto: Send a full, absolute timestamp if it isn't monotonically growing
Merged-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parents ca9d7c57 89564be4
......@@ -313,7 +313,8 @@ int ff_rtmp_packet_write(URLContext *h, RTMPPacket *pkt,
//if channel_id = 0, this is first presentation of prev_pkt, send full hdr.
if (prev_pkt[pkt->channel_id].channel_id &&
pkt->extra == prev_pkt[pkt->channel_id].extra) {
pkt->extra == prev_pkt[pkt->channel_id].extra &&
pkt->timestamp >= prev_pkt[pkt->channel_id].timestamp) {
if (pkt->type == prev_pkt[pkt->channel_id].type &&
pkt->size == prev_pkt[pkt->channel_id].size) {
mode = RTMP_PS_FOURBYTES;
......
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