From 8500fffcb6c10b65b1d85efe3d7248b8168cb0a9 Mon Sep 17 00:00:00 2001 From: rtognimp Date: Mon, 22 Nov 2004 19:45:55 +0000 Subject: Try port 7070 if 554 fails for realrtsp streams git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@14018 b3059339-0415-0410-9bf9-f77b7e298cf2 --- libmpdemux/network.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'libmpdemux') diff --git a/libmpdemux/network.c b/libmpdemux/network.c index b25567b2b7..c5662840c1 100644 --- a/libmpdemux/network.c +++ b/libmpdemux/network.c @@ -1036,6 +1036,9 @@ realrtsp_streaming_start( stream_t *stream ) { fd = connect2Server( stream->streaming_ctrl->url->hostname, port = (stream->streaming_ctrl->url->port ? stream->streaming_ctrl->url->port : 554),1 ); + if(fd<0 && !stream->streaming_ctrl->url->port) + fd = connect2Server( stream->streaming_ctrl->url->hostname, + port = 7070, 1 ); if(fd<0) return -1; file = stream->streaming_ctrl->url->file; -- cgit v1.2.3