mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-20 07:16:55 +00:00
interleave: allow per feature registration
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-good/-/merge_requests/876>
This commit is contained in:
parent
26d37fb491
commit
713453d145
4 changed files with 19 additions and 10 deletions
|
@ -64,6 +64,7 @@
|
||||||
|
|
||||||
#include <gst/gst.h>
|
#include <gst/gst.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
#include "gstinterleaveelements.h"
|
||||||
#include "deinterleave.h"
|
#include "deinterleave.h"
|
||||||
|
|
||||||
GST_DEBUG_CATEGORY_STATIC (gst_deinterleave_debug);
|
GST_DEBUG_CATEGORY_STATIC (gst_deinterleave_debug);
|
||||||
|
@ -116,6 +117,8 @@ deinterleave_24 (guint8 * out, guint8 * in, guint stride, guint nframes)
|
||||||
|
|
||||||
#define gst_deinterleave_parent_class parent_class
|
#define gst_deinterleave_parent_class parent_class
|
||||||
G_DEFINE_TYPE (GstDeinterleave, gst_deinterleave, GST_TYPE_ELEMENT);
|
G_DEFINE_TYPE (GstDeinterleave, gst_deinterleave, GST_TYPE_ELEMENT);
|
||||||
|
GST_ELEMENT_REGISTER_DEFINE (deinterleave, "deinterleave",
|
||||||
|
GST_RANK_NONE, gst_deinterleave_get_type ());
|
||||||
|
|
||||||
enum
|
enum
|
||||||
{
|
{
|
||||||
|
|
|
@ -20,12 +20,15 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
#ifndef __GST_PLUGIN_INTERLEAVE_H__
|
#ifndef __GST_INTERLEAVE_ELEMENTS_H__
|
||||||
#define __GST_PLUGIN_INTERLEAVE_H__
|
#define __GST_INTERLEAVE_ELEMENTS_H__
|
||||||
|
|
||||||
|
|
||||||
#include <gst/gst.h>
|
#include <gst/gst.h>
|
||||||
#include "interleave.h"
|
#include "interleave.h"
|
||||||
#include "deinterleave.h"
|
#include "deinterleave.h"
|
||||||
|
|
||||||
#endif /* __GST_PLUGIN_INTERLEAVE_H__ */
|
GST_ELEMENT_REGISTER_DECLARE (interleave);
|
||||||
|
GST_ELEMENT_REGISTER_DECLARE (deinterleave);
|
||||||
|
|
||||||
|
#endif /* __GST_INTERLEAVE_ELEMENTS_H__ */
|
|
@ -70,6 +70,7 @@
|
||||||
|
|
||||||
#include <gst/gst.h>
|
#include <gst/gst.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
#include "gstinterleaveelements.h"
|
||||||
#include "interleave.h"
|
#include "interleave.h"
|
||||||
|
|
||||||
#include <gst/audio/audio.h>
|
#include <gst/audio/audio.h>
|
||||||
|
@ -192,6 +193,8 @@ gst_interleave_pad_class_init (GstPadClass * klass)
|
||||||
|
|
||||||
#define gst_interleave_parent_class parent_class
|
#define gst_interleave_parent_class parent_class
|
||||||
G_DEFINE_TYPE (GstInterleave, gst_interleave, GST_TYPE_ELEMENT);
|
G_DEFINE_TYPE (GstInterleave, gst_interleave, GST_TYPE_ELEMENT);
|
||||||
|
GST_ELEMENT_REGISTER_DEFINE (interleave, "interleave",
|
||||||
|
GST_RANK_NONE, gst_interleave_get_type ());
|
||||||
|
|
||||||
enum
|
enum
|
||||||
{
|
{
|
||||||
|
|
|
@ -23,17 +23,17 @@
|
||||||
#include "config.h"
|
#include "config.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include "plugin.h"
|
#include "gstinterleaveelements.h"
|
||||||
|
|
||||||
static gboolean
|
static gboolean
|
||||||
plugin_init (GstPlugin * plugin)
|
plugin_init (GstPlugin * plugin)
|
||||||
{
|
{
|
||||||
if (!gst_element_register (plugin, "interleave",
|
gboolean ret = FALSE;
|
||||||
GST_RANK_NONE, gst_interleave_get_type ()) ||
|
|
||||||
!gst_element_register (plugin, "deinterleave",
|
ret |= GST_ELEMENT_REGISTER (interleave, plugin);
|
||||||
GST_RANK_NONE, gst_deinterleave_get_type ()))
|
ret |= GST_ELEMENT_REGISTER (deinterleave, plugin);
|
||||||
return FALSE;
|
|
||||||
return TRUE;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
GST_PLUGIN_DEFINE (GST_VERSION_MAJOR,
|
GST_PLUGIN_DEFINE (GST_VERSION_MAJOR,
|
||||||
|
|
Loading…
Reference in a new issue