1 /* SPDX-License-Identifier: LGPL-2.0-or-later */
2
3 #ifdef HAVE_CONFIG_H
4 #include "config.h"
5 #endif
6
7 #include "gstatscmux.h"
8 #include "gstmpegtsmux.h"
9
10 static gboolean
plugin_init(GstPlugin * plugin)11 plugin_init (GstPlugin * plugin)
12 {
13 gboolean ret = FALSE;
14
15 ret |= GST_ELEMENT_REGISTER (mpegtsmux, plugin);
16 ret |= GST_ELEMENT_REGISTER (atscmux, plugin);
17
18 return ret;
19 }
20
21 GST_PLUGIN_DEFINE (GST_VERSION_MAJOR, GST_VERSION_MINOR,
22 mpegtsmux, "MPEG-TS muxer",
23 plugin_init, VERSION, "LGPL", GST_PACKAGE_NAME, GST_PACKAGE_ORIGIN);
24