From aa87c143cb369f1448f8d08086b5ef98998b4436 Mon Sep 17 00:00:00 2001 From: wm4 Date: Sat, 24 May 2014 14:06:13 +0200 Subject: 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. --- stream/stream_null.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'stream/stream_null.c') diff --git a/stream/stream_null.c b/stream/stream_null.c index c9a0a430e2..8fca1282a5 100644 --- a/stream/stream_null.c +++ b/stream/stream_null.c @@ -25,14 +25,14 @@ #include "stream.h" -static int open_s(stream_t *stream,int mode) +static int open_s(stream_t *stream) { return 1; } - const stream_info_t stream_info_null = { .name = "null", .open = open_s, .protocols = (const char*[]){ "null", NULL }, + .can_write = true, }; -- cgit v1.2.3