2013-05-08 14:13:32 +00:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
# include <config.h>
|
|
|
|
#endif
|
|
|
|
|
2012-10-17 13:50:33 +00:00
|
|
|
#include <string.h>
|
|
|
|
|
2013-05-08 14:13:32 +00:00
|
|
|
#include <gst/gst.h>
|
|
|
|
|
|
|
|
#include "gstdashdemux.h"
|
|
|
|
|
|
|
|
static gboolean
|
2015-07-16 20:28:28 +00:00
|
|
|
dashdemux_init (GstPlugin * plugin)
|
2013-05-08 14:13:32 +00:00
|
|
|
{
|
2015-07-16 20:28:28 +00:00
|
|
|
return gst_element_register (plugin, "dashdemux", GST_RANK_PRIMARY,
|
|
|
|
GST_TYPE_DASH_DEMUX);
|
2013-05-08 14:13:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
GST_PLUGIN_DEFINE (GST_VERSION_MAJOR,
|
|
|
|
GST_VERSION_MINOR,
|
2013-04-18 10:41:09 +00:00
|
|
|
dashdemux,
|
2012-11-12 09:54:35 +00:00
|
|
|
"DASH demuxer plugin",
|
2015-07-16 20:28:28 +00:00
|
|
|
dashdemux_init, VERSION, "LGPL", PACKAGE_NAME, GST_PACKAGE_ORIGIN)
|