diff options
author | Martin Storsjö <martin@martin.st> | 2013-07-31 12:17:51 +0300 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2013-07-31 21:12:34 +0300 |
commit | 7531588fffbca1f0afdcc06635999c00dfc16ca6 (patch) | |
tree | f0f89180f310a645d9c688a2397e2d971bf703c0 /libavformat/rtpproto.c | |
parent | 54e03ff6af8a070f1055edd26028f3f7b2e2ca8e (diff) | |
download | ffmpeg-7531588fffbca1f0afdcc06635999c00dfc16ca6.tar.gz |
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@martin.st>
Diffstat (limited to 'libavformat/rtpproto.c')
-rw-r--r-- | libavformat/rtpproto.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libavformat/rtpproto.c b/libavformat/rtpproto.c index 024c69ba59..2ec57ee89d 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 */ |