1 #ifdef HAVE_CONFIG_H
2 #  include <config.h>
3 #endif
4 
5 #include <string.h>
6 
7 #include <gst/gst.h>
8 
9 #include "gstdashdemux.h"
10 
11 static gboolean
dashdemux_init(GstPlugin * plugin)12 dashdemux_init (GstPlugin * plugin)
13 {
14   return gst_element_register (plugin, "dashdemux", GST_RANK_PRIMARY,
15       GST_TYPE_DASH_DEMUX);
16 }
17 
18 GST_PLUGIN_DEFINE (GST_VERSION_MAJOR,
19     GST_VERSION_MINOR,
20     dashdemux,
21     "DASH demuxer plugin",
22     dashdemux_init, VERSION, "LGPL", PACKAGE_NAME, GST_PACKAGE_ORIGIN)
23