diff stream/http.c @ 29920:4f740437ed2b

Finally rename the STREAM_SEEK define to MP_STREAM_SEEK, there are just too many name clashes, in particular with Windows headers (which define STREAM_SEEK as an enum type).
author reimar
date Sun, 22 Nov 2009 15:18:21 +0000
parents 0f1b5b68af32
children f7af93ece976
line wrap: on
line diff
--- a/stream/http.c	Sun Nov 22 15:10:50 2009 +0000
+++ b/stream/http.c	Sun Nov 22 15:18:21 2009 +0000
@@ -891,7 +891,7 @@
 	stream->type = STREAMTYPE_STREAM;
 	if(!is_icy && !is_ultravox && seekable)
 	{
-		stream->flags |= STREAM_SEEK;
+		stream->flags |= MP_STREAM_SEEK;
 		stream->seek = http_seek;
 	}
 	stream->streaming_ctrl->bandwidth = network_bandwidth;