#ifdef HAVE_CONFIG_H # include #endif #include "gsthlselements.h" GST_DEBUG_CATEGORY (hls2_debug); void hls2_element_init (void) { static gsize res = FALSE; if (g_once_init_enter (&res)) { GST_DEBUG_CATEGORY_INIT (hls2_debug, "hlsng", 0, "HTTP Live Streaming (HLS) NG"); g_once_init_leave (&res, TRUE); } }