From 43fc314279562580c95e558a56a4277f1f7dc5f0 Mon Sep 17 00:00:00 2001 From: wm4 Date: Wed, 19 Jun 2019 19:24:01 +0200 Subject: stream: add a generic concat implementation This is not available to users. It can be used only though the stream_concat_open(). It's unused yet; to be used in the following commit. --- stream/stream.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'stream/stream.h') diff --git a/stream/stream.h b/stream/stream.h index 4bd6a7b713..62712503ed 100644 --- a/stream/stream.h +++ b/stream/stream.h @@ -179,6 +179,10 @@ char *mp_url_escape(void *talloc_ctx, const char *s, const char *ok); // stream_memory.c struct stream *stream_memory_open(struct mpv_global *global, void *data, int len); +// stream_concat.c +struct stream *stream_concat_open(struct mpv_global *global, struct mp_cancel *c, + struct stream **streams, int num_streams); + // stream_file.c char *mp_file_url_to_filename(void *talloc_ctx, bstr url); char *mp_file_get_path(void *talloc_ctx, bstr url); -- cgit v1.2.3