#ifdef HAVE_CONFIG_H # include #endif #include #include "gstfragmented.h" #include "gsthlsdemux.h" #if 0 #include "gsthlssink.h" #endif GST_DEBUG_CATEGORY (fragmented_debug); static gboolean fragmented_init (GstPlugin * plugin) { GST_DEBUG_CATEGORY_INIT (fragmented_debug, "fragmented", 0, "fragmented"); if (!gst_element_register (plugin, "hlsdemux", GST_RANK_PRIMARY, GST_TYPE_HLS_DEMUX) || FALSE) return FALSE; #if 0 if (!gst_hls_sink_plugin_init (plugin)) return FALSE; #endif return TRUE; } GST_PLUGIN_DEFINE (GST_VERSION_MAJOR, GST_VERSION_MINOR, fragmented, "Fragmented streaming plugins", fragmented_init, VERSION, "LGPL", PACKAGE_NAME, "http://www.gstreamer.org/")