summaryrefslogtreecommitdiffstats
path: root/stream/stream.h
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2015-02-27 19:51:14 +0100
committerwm4 <wm4@nowhere>2015-02-27 19:51:14 +0100
commitfbf76da913b2d39a7da3cc7cea3d8b61f3c2f540 (patch)
treebb621487e15acecb2e1c1e94aab1125138d21931 /stream/stream.h
parent5824eb7107a612880f68cc8e4f42cfff1bbf88ba (diff)
downloadmpv-fbf76da913b2d39a7da3cc7cea3d8b61f3c2f540.tar.bz2
mpv-fbf76da913b2d39a7da3cc7cea3d8b61f3c2f540.tar.xz
stream: remove stream filter concept
Unused since the previous commit. (Apparently it was a stupid idea.)
Diffstat (limited to 'stream/stream.h')
-rw-r--r--stream/stream.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/stream/stream.h b/stream/stream.h
index b824aaf356..9908951bad 100644
--- a/stream/stream.h
+++ b/stream/stream.h
@@ -54,7 +54,6 @@ enum streamtype {
#define STREAM_WRITE 1
// flags for stream_open_ext (this includes STREAM_READ and STREAM_WRITE)
-#define STREAM_NO_FILTERS 2
#define STREAM_SAFE_ONLY 4
#define STREAM_NETWORK_ONLY 8
@@ -157,7 +156,6 @@ typedef struct stream_info_st {
void *(*get_defaults)(struct stream *st);
const struct m_option *options;
const char *const *url_options;
- bool stream_filter;
bool can_write; // correctly checks for READ/WRITE modes
bool is_safe; // opening is no security issue, even with remote provided URLs
bool is_network; // used to restrict remote playlist entries to remote URLs
@@ -209,7 +207,6 @@ typedef struct stream {
char *capture_filename;
struct stream *uncached_stream; // underlying stream for cache wrapper
- struct stream *source;
// Includes additional padding in case sizes get rounded up by sector size.
unsigned char buffer[];