1 2 #ifdef HAVE_CONFIG_H 3 # include <config.h> 4 #endif 5 6 #include "gsthlselements.h" 7 8 GST_DEBUG_CATEGORY (hls_debug); 9 10 void hls_element_init(GstPlugin * plugin)11hls_element_init (GstPlugin * plugin) 12 { 13 static gsize res = FALSE; 14 if (g_once_init_enter (&res)) { 15 GST_DEBUG_CATEGORY_INIT (hls_debug, "hls", 0, "HTTP Live Streaming (HLS)"); 16 g_once_init_leave (&res, TRUE); 17 } 18 } 19