summaryrefslogtreecommitdiffstats
path: root/stream/stream_rar.c
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2014-05-24 14:06:13 +0200
committerwm4 <wm4@nowhere>2014-05-24 16:17:52 +0200
commitaa87c143cb369f1448f8d08086b5ef98998b4436 (patch)
treeb3b3a079f5e82f66e62d46fcad1488a59f387d2c /stream/stream_rar.c
parent80cbb3bac2e2b2a569d5a9a9c6dd5d4f2da04f7c (diff)
downloadmpv-aa87c143cb369f1448f8d08086b5ef98998b4436.tar.bz2
mpv-aa87c143cb369f1448f8d08086b5ef98998b4436.tar.xz
stream: remove chaos related to writeable streams
For some reason, we support writeable streams. (Only encoding uses that, and the use of it looks messy enough that I want to replace it with FILE or avio today.) It's a chaos: most streams do not actually check the mode parameter like they should. Simplify it, and let streams signal availability of write mode by setting a flag in the stream info struct.
Diffstat (limited to 'stream/stream_rar.c')
-rw-r--r--stream/stream_rar.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/stream/stream_rar.c b/stream/stream_rar.c
index 24687523e2..d40a8ca545 100644
--- a/stream/stream_rar.c
+++ b/stream/stream_rar.c
@@ -86,7 +86,7 @@ static int rar_entry_control(stream_t *s, int cmd, void *arg)
return STREAM_UNSUPPORTED;
}
-static int rar_entry_open(stream_t *stream, int mode)
+static int rar_entry_open(stream_t *stream)
{
if (!strchr(stream->path, '|'))
return STREAM_ERROR;
@@ -158,11 +158,8 @@ static void rar_filter_close(stream_t *s)
free_stream(m);
}
-static int rar_filter_open(stream_t *stream, int mode)
+static int rar_filter_open(stream_t *stream)
{
- if (mode != STREAM_READ)
- return STREAM_UNSUPPORTED;
-
struct stream *rar = stream->source;
if (!rar)
return STREAM_UNSUPPORTED;