summaryrefslogtreecommitdiffstats
path: root/stream/stream.h
diff options
context:
space:
mode:
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[];