From: Martin Storsjö Date: Wed, 16 Dec 2009 12:49:38 +0000 (+0000) Subject: Reply to RTMP ping with the same value as received by client. X-Git-Tag: v0.6~2298 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=4aaebf78f53fc484c74e08f5c0ecbaecbe019fac;p=coroid%2Flibav_saccubus.git Reply to RTMP ping with the same value as received by client. Patch by Martin Storsjö ($name at $name dot \163\164) Originally committed as revision 20881 to svn://svn.ffmpeg.org/ffmpeg/trunk --- diff --git a/libavformat/rtmpproto.c b/libavformat/rtmpproto.c index bf3ab9307..d117b018d 100644 --- a/libavformat/rtmpproto.c +++ b/libavformat/rtmpproto.c @@ -332,7 +332,7 @@ static void gen_pong(URLContext *s, RTMPContext *rt, RTMPPacket *ppkt) ff_rtmp_packet_create(&pkt, RTMP_NETWORK_CHANNEL, RTMP_PT_PING, ppkt->timestamp + 1, 6); p = pkt.data; bytestream_put_be16(&p, 7); - bytestream_put_be32(&p, AV_RB32(ppkt->data+2) + 1); + bytestream_put_be32(&p, AV_RB32(ppkt->data+2)); ff_rtmp_packet_write(rt->stream, &pkt, rt->chunk_size, rt->prev_pkt[1]); ff_rtmp_packet_destroy(&pkt); }