summaryrefslogtreecommitdiffstats
path: root/stream/stream.h
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2015-02-27 19:51:14 +0100
committerDiogo Franco (Kovensky) <diogomfranco@gmail.com>2015-03-03 16:02:07 +0900
commit517f15dc497ed9b5f5c44ff3574395a97eaa234f (patch)
tree74ce9a0c9e2e2b738256c1616b7e01b48a742a13 /stream/stream.h
parent62cf557b5f02590893d36a5cf8a261e845fc3e15 (diff)
downloadmpv-517f15dc497ed9b5f5c44ff3574395a97eaa234f.tar.bz2
mpv-517f15dc497ed9b5f5c44ff3574395a97eaa234f.tar.xz
stream: remove stream filter concept
Unused since the previous commit. (Apparently it was a stupid idea.) (cherry picked from commit fbf76da913b2d39a7da3cc7cea3d8b61f3c2f540)
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[];