ffserver: Make sure a destination URL is set when creating the SDP
authorMartin Storsjö <martin@martin.st>
Mon, 17 May 2010 17:34:13 +0000 (17:34 +0000)
committerMartin Storsjö <martin@martin.st>
Mon, 17 May 2010 17:34:13 +0000 (17:34 +0000)
Debugged by Howard Chu, hyc at highlandsun dot com.

Originally committed as revision 23151 to svn://svn.ffmpeg.org/ffmpeg/trunk

ffserver.c

index e81245d..7dcc9b2 100644 (file)
@@ -2946,6 +2946,8 @@ static int prepare_sdp_description(FFStream *stream, uint8_t **pbuffer,
         snprintf(avc->filename, 1024, "rtp://%s:%d?multicast=1?ttl=%d",
                  inet_ntoa(stream->multicast_ip),
                  stream->multicast_port, stream->multicast_ttl);
+    } else {
+        snprintf(avc->filename, 1024, "rtp://0.0.0.0");
     }
 
     for(i = 0; i < stream->nb_streams; i++) {