diff options
Diffstat (limited to 'stream/stream_edl.c')
-rw-r--r-- | stream/stream_edl.c | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/stream/stream_edl.c b/stream/stream_edl.c new file mode 100644 index 0000000..94bbe58 --- /dev/null +++ b/stream/stream_edl.c @@ -0,0 +1,17 @@ +// Dummy stream implementation to enable demux_edl, which is in turn a +// dummy demuxer implementation to enable tl_edl. + +#include "stream.h" + +static int s_open (struct stream *stream) +{ + stream->demuxer = "edl"; + + return STREAM_OK; +} + +const stream_info_t stream_info_edl = { + .name = "edl", + .open = s_open, + .protocols = (const char*const[]){"edl", NULL}, +}; |