rtmpproto: Add a comment explaining the logic in handle_notify
authorMartin Storsjö <martin@martin.st>
Thu, 19 Sep 2013 09:48:04 +0000 (12:48 +0300)
committerMartin Storsjö <martin@martin.st>
Fri, 20 Sep 2013 07:47:15 +0000 (10:47 +0300)
This explains why the cleanup in 5626f994f was wrong and why
ae0f316a was needed.

Signed-off-by: Martin Storsjö <martin@martin.st>
libavformat/rtmpproto.c

index e404d60..a0ef268 100644 (file)
@@ -2095,9 +2095,11 @@ static int handle_notify(URLContext *s, RTMPPacket *pkt) {
 
     // generate packet header and put data into buffer for FLV demuxer
     if (rt->flv_off < rt->flv_size) {
+        // There is old unread data in the buffer, thus append at the end
         old_flv_size  = rt->flv_size;
         rt->flv_size += datatowritelength + 15;
     } else {
+        // All data has been read, write the new data at the start of the buffer
         old_flv_size = 0;
         rt->flv_size = datatowritelength + 15;
         rt->flv_off  = 0;