mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-08 18:39:54 +00:00
0a2c490723
Uses prelude header files with #defines to rename DASH and MSS symbols duplicated in their old standalone versions. Also redefines soup-related functions when building it for adaptivedemux2 to prevent symbol conflicts there. Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/2534>
19 lines
345 B
C
19 lines
345 B
C
|
|
#ifdef HAVE_CONFIG_H
|
|
# include <config.h>
|
|
#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);
|
|
}
|
|
}
|