[FFmpeg-cvslog] rtpproto: Remove a misplaced comment

Martin Storsjö git at videolan.org
Thu Aug 1 11:58:00 CEST 2013


ffmpeg | branch: master | Martin Storsjö <martin at martin.st> | Wed Jul 31 12:17:51 2013 +0300| [7531588fffbca1f0afdcc06635999c00dfc16ca6] | committer: Martin Storsjö

rtpproto: Remove a misplaced comment

The fdset is a pollfd array nowadays, and it is already populated
at this point.

Signed-off-by: Martin Storsjö <martin at martin.st>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=7531588fffbca1f0afdcc06635999c00dfc16ca6
---

 libavformat/rtpproto.c |    1 -
 1 file changed, 1 deletion(-)

diff --git a/libavformat/rtpproto.c b/libavformat/rtpproto.c
index 024c69b..2ec57ee 100644
--- a/libavformat/rtpproto.c
+++ b/libavformat/rtpproto.c
@@ -331,7 +331,6 @@ static int rtp_read(URLContext *h, uint8_t *buf, int size)
     for(;;) {
         if (ff_check_interrupt(&h->interrupt_callback))
             return AVERROR_EXIT;
-        /* build fdset to listen to RTP and RTCP packets */
         n = poll(p, 2, poll_delay);
         if (n > 0) {
             /* first try RTCP */



More information about the ffmpeg-cvslog mailing list