mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
7e499b9a66
Split plugin into features including dynamic types which can be indiviually registered during a static build. More details here: https://gitlab.freedesktop.org/gstreamer/gst-build/-/merge_requests/199 https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/661 Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-bad/-/merge_requests/2038>
18 lines
354 B
C
18 lines
354 B
C
#ifndef __GST_HLS_ELEMENT_H__
|
|
#define __GST_HLS_ELEMENT_H__
|
|
|
|
#include <gst/gst.h>
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
void hls_element_init (GstPlugin * plugin);
|
|
|
|
GST_ELEMENT_REGISTER_DECLARE (hlsdemux);
|
|
GST_ELEMENT_REGISTER_DECLARE (hlssink);
|
|
GST_ELEMENT_REGISTER_DECLARE (hlssink2);
|
|
|
|
GST_DEBUG_CATEGORY_EXTERN (hls_debug);
|
|
|
|
G_END_DECLS
|
|
|
|
#endif /* __GST_HLS_ELEMENT_H__ */
|