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_cdda.c | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'stream/stream_cdda.c') diff --git a/stream/stream_cdda.c b/stream/stream_cdda.c index 856c9736d2..f6740c1816 100644 --- a/stream/stream_cdda.c +++ b/stream/stream_cdda.c @@ -283,7 +283,7 @@ static int control(stream_t *stream, int cmd, void *arg) return STREAM_UNSUPPORTED; } -static int open_cdda(stream_t *st, int m) +static int open_cdda(stream_t *st) { cdda_priv *priv = st->priv; cdda_priv *p = priv; @@ -292,10 +292,6 @@ static int open_cdda(stream_t *st, int m) cdrom_drive_t *cdd = NULL; int last_track; - if (m != STREAM_READ) { - return STREAM_UNSUPPORTED; - } - if (!p->device) { if (cdrom_device) p->device = talloc_strdup(NULL, cdrom_device); -- cgit v1.2.3