From 9972847265f760ec6d7f813750325f11f7e0077f Mon Sep 17 00:00:00 2001 From: wm4 Date: Fri, 4 Mar 2016 23:51:55 +0100 Subject: demux: add null demuxer It's useless, but can be used for fancy --lavfi-complex nonsense. --- demux/demux_null.c | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 demux/demux_null.c (limited to 'demux/demux_null.c') diff --git a/demux/demux_null.c b/demux/demux_null.c new file mode 100644 index 0000000000..c6a25b5af2 --- /dev/null +++ b/demux/demux_null.c @@ -0,0 +1,34 @@ +/* + * This file is part of mpv. + * + * mpv is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * mpv is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with mpv. If not, see . + */ + +#include "misc/bstr.h" +#include "stream/stream.h" +#include "demux.h" + +static int try_open_file(struct demuxer *demux, enum demux_check check) +{ + if (strcmp(demux->stream->info->name, "null") != 0 && + check != DEMUX_CHECK_REQUEST) + return -1; + return 0; +} + +const struct demuxer_desc demuxer_desc_null = { + .name = "null", + .desc = "null demuxer", + .open = try_open_file, +}; -- cgit v1.2.3