2021-09-19 00:18:00 +00:00
|
|
|
/* SPDX-License-Identifier: LGPL-2.0-or-later */
|
|
|
|
|
2019-04-25 16:26:27 +00:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
2019-04-29 23:42:59 +00:00
|
|
|
#include "gstatscmux.h"
|
2021-02-25 14:22:15 +00:00
|
|
|
#include "gstmpegtsmux.h"
|
2019-04-25 16:26:27 +00:00
|
|
|
|
|
|
|
static gboolean
|
|
|
|
plugin_init (GstPlugin * plugin)
|
|
|
|
{
|
2021-02-25 14:22:15 +00:00
|
|
|
gboolean ret = FALSE;
|
2019-04-25 16:26:27 +00:00
|
|
|
|
2021-02-25 14:22:15 +00:00
|
|
|
ret |= GST_ELEMENT_REGISTER (mpegtsmux, plugin);
|
|
|
|
ret |= GST_ELEMENT_REGISTER (atscmux, plugin);
|
2019-04-25 16:26:27 +00:00
|
|
|
|
2021-02-25 14:22:15 +00:00
|
|
|
return ret;
|
2019-04-25 16:26:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
GST_PLUGIN_DEFINE (GST_VERSION_MAJOR, GST_VERSION_MINOR,
|
|
|
|
mpegtsmux, "MPEG-TS muxer",
|
|
|
|
plugin_init, VERSION, "LGPL", GST_PACKAGE_NAME, GST_PACKAGE_ORIGIN);
|