From 43d09fafd42c0c2b8f7c96d4abfaed01464c7966 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Martin=20Storsj=C3=B6?= <martin@martin.st>
Date: Mon, 17 May 2010 17:34:13 +0000
Subject: [PATCH] ffserver: Make sure a destination URL is set when creating
 the SDP

Debugged by Howard Chu, hyc at highlandsun dot com.

Originally committed as revision 23151 to svn://svn.ffmpeg.org/ffmpeg/trunk
---
 ffserver.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/ffserver.c b/ffserver.c
index e81245d9d3b..7dcc9b23fdb 100644
--- a/ffserver.c
+++ b/ffserver.c
@@ -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++) {
-- 
GitLab