summaryrefslogtreecommitdiffstats
path: root/stream/stream.h
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2013-05-01 22:31:05 +0200
committerwm4 <wm4@nowhere>2013-05-03 21:08:35 +0200
commit35568f84f3170085eccddd82845c5cffc6f7ec7c (patch)
treeb51feb4ed7fc53a80783d3cce5310174f0e07d13 /stream/stream.h
parent71cc8c1581214a556074b79b06144bfd49554285 (diff)
downloadmpv-35568f84f3170085eccddd82845c5cffc6f7ec7c.tar.bz2
mpv-35568f84f3170085eccddd82845c5cffc6f7ec7c.tar.xz
stream: remove unused new_ds_stream()
Diffstat (limited to 'stream/stream.h')
-rw-r--r--stream/stream.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/stream/stream.h b/stream/stream.h
index fb3d08097f..c47452aeb9 100644
--- a/stream/stream.h
+++ b/stream/stream.h
@@ -42,7 +42,6 @@
#define STREAMTYPE_DVD 3 // libdvdread
#define STREAMTYPE_MEMORY 4 // read data from memory area
#define STREAMTYPE_PLAYLIST 6 // FIXME!!! same as STREAMTYPE_FILE now
-#define STREAMTYPE_DS 8 // read from a demuxer stream
#define STREAMTYPE_CDDA 10 // raw audio CD reader
#define STREAMTYPE_SMB 11 // smb:// url, using libsmbclient (samba)
#define STREAMTYPE_VCDBINCUE 12 // vcd directly from bin/cue files
@@ -393,7 +392,6 @@ stream_t *open_stream(const char *filename, struct MPOpts *options,
int *file_format);
stream_t *open_output_stream(const char *filename, struct MPOpts *options);
struct demux_stream;
-struct stream *new_ds_stream(struct demux_stream *ds);
/// Set the callback to be used by libstream to check for user
/// interruption during long blocking operations (cache filling, etc).