summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2013-01-13 17:22:28 +0100
committerwm4 <wm4@nowhere>2013-01-13 17:32:39 +0100
commit97032f1b58cc4c5c17002939703ee16904691675 (patch)
treec1af3881781fb56a79ad95ece7fe9785e2d9283d /Makefile
parenta27a494e665a16b55d5a0520c3acc2bdd278e4c8 (diff)
downloadmpv-97032f1b58cc4c5c17002939703ee16904691675.tar.bz2
mpv-97032f1b58cc4c5c17002939703ee16904691675.tar.xz
Remove netstream support
This allowed to move the input stream layer across the network, allowing the user to play anything that mplayer could play remotely. For example, playing a DVD related on a remote server (say, with the host name "remotehost1") could be done by starting the netstream server on that remote server, and then running: mplayer mpst://remotehost1/dvd:// This would open the DVD on the remote host, and transfer the raw DVD sector reads over network. It works the same for other protocols, and all accesses to the stream layer are marshaled over network. It's comparable to the way the cache layer (--cache) works. It has questionable use and most likely was barely used at all. There's lots of potential for breakage, because it doesn't translate the stream CTRLs to network packets. Just get rid of it. The server used to be in TOOLS/netstream.c, and was accidentally removed earlier.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 1 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 304bb34ad1..ff42ffe42c 100644
--- a/Makefile
+++ b/Makefile
@@ -56,8 +56,7 @@ SOURCES-$(MPG123) += audio/decode/ad_mpg123.c
SOURCES-$(NEED_GETTIMEOFDAY) += osdep/gettimeofday.c
SOURCES-$(NEED_GLOB) += osdep/glob-win.c
SOURCES-$(NEED_SHMEM) += osdep/shmem.c
-SOURCES-$(NETWORKING) += stream/stream_netstream.c \
- stream/asf_mmst_streaming.c \
+SOURCES-$(NETWORKING) += stream/asf_mmst_streaming.c \
stream/asf_streaming.c \
stream/cookies.c \
stream/http.c \