2013-11-19 21:26:35 +00:00
|
|
|
// Dummy stream implementation to enable demux_edl, which is in turn a
|
|
|
|
// dummy demuxer implementation to enable tl_edl.
|
|
|
|
|
|
|
|
#include "stream.h"
|
|
|
|
|
2014-05-24 12:06:13 +00:00
|
|
|
static int s_open (struct stream *stream)
|
2013-11-19 21:26:35 +00:00
|
|
|
{
|
|
|
|
stream->demuxer = "edl";
|
|
|
|
|
|
|
|
return STREAM_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
const stream_info_t stream_info_edl = {
|
|
|
|
.name = "edl",
|
|
|
|
.open = s_open,
|
2014-06-10 21:56:05 +00:00
|
|
|
.protocols = (const char*const[]){"edl", NULL},
|
2013-11-19 21:26:35 +00:00
|
|
|
};
|