summaryrefslogtreecommitdiffstats
path: root/stream/stream_udp.c
diff options
context:
space:
mode:
Diffstat (limited to 'stream/stream_udp.c')
-rw-r--r--stream/stream_udp.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/stream/stream_udp.c b/stream/stream_udp.c
index c366d8e4a9..5b901cf543 100644
--- a/stream/stream_udp.c
+++ b/stream/stream_udp.c
@@ -40,10 +40,10 @@ udp_streaming_start (stream_t *stream)
streaming_ctrl = stream->streaming_ctrl;
fd = stream->fd;
-
+
if (fd < 0)
{
- fd = udp_open_socket (streaming_ctrl->url);
+ fd = udp_open_socket (streaming_ctrl->url);
if (fd < 0)
return -1;
stream->fd = fd;
@@ -54,7 +54,7 @@ udp_streaming_start (stream_t *stream)
streaming_ctrl->prebuffer_size = 64 * 1024; /* 64 KBytes */
streaming_ctrl->buffering = 0;
streaming_ctrl->status = streaming_playing_e;
-
+
return 0;
}
@@ -63,7 +63,7 @@ udp_stream_open (stream_t *stream, int mode, void *opts, int *file_format)
{
URL_t *url;
extern int network_bandwidth;
-
+
mp_msg (MSGT_OPEN, MSGL_INFO, "STREAM_UDP, URL: %s\n", stream->url);
stream->streaming_ctrl = streaming_ctrl_new ();
if (!stream->streaming_ctrl)
@@ -79,7 +79,7 @@ udp_stream_open (stream_t *stream, int mode, void *opts, int *file_format)
"You must enter a port number for UDP streams!\n");
streaming_ctrl_free (stream->streaming_ctrl);
stream->streaming_ctrl = NULL;
-
+
return STREAM_UNSUPPORTED;
}
@@ -88,13 +88,13 @@ udp_stream_open (stream_t *stream, int mode, void *opts, int *file_format)
mp_msg (MSGT_NETWORK, MSGL_ERR, "udp_streaming_start failed\n");
streaming_ctrl_free (stream->streaming_ctrl);
stream->streaming_ctrl = NULL;
-
+
return STREAM_UNSUPPORTED;
}
stream->type = STREAMTYPE_STREAM;
fixup_network_stream_cache (stream);
-
+
return STREAM_OK;
}