]> git.sesse.net Git - ffmpeg/commitdiff
udp: call av_fifo_space directly as needed.
authorNicolas George <nicolas.george@normalesup.org>
Thu, 15 Mar 2012 12:11:06 +0000 (13:11 +0100)
committerNicolas George <nicolas.george@normalesup.org>
Thu, 22 Mar 2012 16:36:23 +0000 (17:36 +0100)
The comment seemed to indicate that left was used
to limit the size of the recv, but it was not so.

libavformat/udp.c

index dad79ffc4174fe264e3f5df3a58305847b316e53..4a6cee2d2955ebd8d79d29892230d5ed0d26d802 100644 (file)
@@ -332,13 +332,8 @@ static void *circular_buffer_task( void *_URLContext)
     pthread_setcancelstate(PTHREAD_CANCEL_DISABLE, &old_cancelstate);
     ff_socket_nonblock(s->udp_fd, 0);
     while(1) {
-        int left;
         int len;
 
-        /* How much do we have left to the end of the buffer */
-        /* Whats the minimum we can read so that we dont comletely fill the buffer */
-        left = av_fifo_space(s->fifo);
-
         /* Blocking operations are always cancellation points;
            see "General Information" / "Thread Cancelation Overview"
            in Single Unix. */
@@ -353,7 +348,8 @@ static void *circular_buffer_task( void *_URLContext)
             continue;
         }
         AV_WL32(s->tmp, len);
-        if(left < len + 4) {
+
+        if(av_fifo_space(s->fifo) < len + 4) {
             /* No Space left */
             if (s->overrun_nonfatal) {
                 av_log(h, AV_LOG_WARNING, "Circular buffer overrun. "