summaryrefslogtreecommitdiff
path: root/gst
diff options
context:
space:
mode:
Diffstat (limited to 'gst')
-rw-r--r--gst/adpcmenc/adpcmenc.c2
-rw-r--r--gst/audiomixmatrix/gstaudiomixmatrix.c2
-rw-r--r--gst/audiovisualizers/gstspacescope.c2
-rw-r--r--gst/audiovisualizers/gstwavescope.c2
-rw-r--r--gst/camerabin2/gstcamerabin2.c3
-rw-r--r--gst/coloreffects/gstcoloreffects.c2
-rw-r--r--gst/debugutils/gstchecksumsink.c2
-rw-r--r--gst/debugutils/gstclockselect.c2
-rw-r--r--gst/debugutils/gstcompare.c2
-rw-r--r--gst/debugutils/gstfakevideosink.c2
-rw-r--r--gst/fieldanalysis/gstfieldanalysis.c3
-rw-r--r--gst/geometrictransform/gstgeometrictransform.c2
-rw-r--r--gst/geometrictransform/gstmirror.c2
-rw-r--r--gst/interlace/gstinterlace.c2
-rw-r--r--gst/mpegtsmux/gstbasetsmux.c2
-rw-r--r--gst/mxf/mxfmux.c2
-rw-r--r--gst/netsim/gstnetsim.c2
-rw-r--r--gst/rawparse/gstaudioparse.c2
-rw-r--r--gst/rist/gstristsink.c2
-rw-r--r--gst/rtmp2/gstrtmp2.c5
-rw-r--r--gst/timecode/gstavwait.c2
-rw-r--r--gst/timecode/gsttimecodestamper.c3
-rw-r--r--gst/yadif/gstyadif.c1
23 files changed, 51 insertions, 0 deletions
diff --git a/gst/adpcmenc/adpcmenc.c b/gst/adpcmenc/adpcmenc.c
index 8391b0883..0a603dfd9 100644
--- a/gst/adpcmenc/adpcmenc.c
+++ b/gst/adpcmenc/adpcmenc.c
@@ -463,6 +463,8 @@ adpcmenc_class_init (ADPCMEncClass * klass)
MIN_ADPCM_BLOCK_SIZE, MAX_ADPCM_BLOCK_SIZE,
DEFAULT_ADPCM_BLOCK_SIZE,
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
+
+ gst_type_mark_as_plugin_api (GST_TYPE_ADPCMENC_LAYOUT);
}
static gboolean
diff --git a/gst/audiomixmatrix/gstaudiomixmatrix.c b/gst/audiomixmatrix/gstaudiomixmatrix.c
index 75f4a970a..537cfb93b 100644
--- a/gst/audiomixmatrix/gstaudiomixmatrix.c
+++ b/gst/audiomixmatrix/gstaudiomixmatrix.c
@@ -216,6 +216,8 @@ gst_audio_mix_matrix_class_init (GstAudioMixMatrixClass * klass)
element_class->change_state =
GST_DEBUG_FUNCPTR (gst_audio_mix_matrix_change_state);
+
+ gst_type_mark_as_plugin_api (GST_TYPE_AUDIO_MIX_MATRIX_MODE);
}
static void
diff --git a/gst/audiovisualizers/gstspacescope.c b/gst/audiovisualizers/gstspacescope.c
index 3e59609f3..146cff805 100644
--- a/gst/audiovisualizers/gstspacescope.c
+++ b/gst/audiovisualizers/gstspacescope.c
@@ -148,6 +148,8 @@ gst_space_scope_class_init (GstSpaceScopeClass * g_class)
"Drawing styles for the space scope display.",
GST_TYPE_SPACE_SCOPE_STYLE, STYLE_DOTS,
G_PARAM_CONSTRUCT | G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
+
+ gst_type_mark_as_plugin_api (GST_TYPE_SPACE_SCOPE_STYLE);
}
static void
diff --git a/gst/audiovisualizers/gstwavescope.c b/gst/audiovisualizers/gstwavescope.c
index c934daa4d..917443ec4 100644
--- a/gst/audiovisualizers/gstwavescope.c
+++ b/gst/audiovisualizers/gstwavescope.c
@@ -152,6 +152,8 @@ gst_wave_scope_class_init (GstWaveScopeClass * g_class)
&gst_wave_scope_src_template);
gst_element_class_add_static_pad_template (gstelement_class,
&gst_wave_scope_sink_template);
+
+ gst_type_mark_as_plugin_api (GST_TYPE_WAVE_SCOPE_STYLE);
}
static void
diff --git a/gst/camerabin2/gstcamerabin2.c b/gst/camerabin2/gstcamerabin2.c
index 5dbf2d850..e375ccf62 100644
--- a/gst/camerabin2/gstcamerabin2.c
+++ b/gst/camerabin2/gstcamerabin2.c
@@ -845,6 +845,9 @@ gst_camera_bin_class_init (GstCameraBin2Class * klass)
G_SIGNAL_RUN_LAST | G_SIGNAL_ACTION,
G_STRUCT_OFFSET (GstCameraBin2Class, stop_capture),
NULL, NULL, NULL, G_TYPE_NONE, 0);
+
+ gst_type_mark_as_plugin_api (GST_TYPE_CAM_FLAGS);
+ gst_type_mark_as_plugin_api (GST_TYPE_CAMERABIN_MODE);
}
static void
diff --git a/gst/coloreffects/gstcoloreffects.c b/gst/coloreffects/gstcoloreffects.c
index dc26f70dd..04a88f67a 100644
--- a/gst/coloreffects/gstcoloreffects.c
+++ b/gst/coloreffects/gstcoloreffects.c
@@ -594,6 +594,8 @@ gst_color_effects_class_init (GstColorEffectsClass * klass)
&gst_color_effects_sink_template);
gst_element_class_add_static_pad_template (element_class,
&gst_color_effects_src_template);
+
+ gst_type_mark_as_plugin_api (GST_TYPE_COLOR_EFFECTS_PRESET);
}
static void
diff --git a/gst/debugutils/gstchecksumsink.c b/gst/debugutils/gstchecksumsink.c
index 9c527e38d..2521db63b 100644
--- a/gst/debugutils/gstchecksumsink.c
+++ b/gst/debugutils/gstchecksumsink.c
@@ -100,6 +100,8 @@ gst_checksum_sink_class_init (GstChecksumSinkClass * klass)
gst_element_class_set_static_metadata (element_class, "Checksum sink",
"Debug/Sink", "Calculates a checksum for buffers",
"David Schleef <ds@schleef.org>");
+
+ gst_type_mark_as_plugin_api (gst_checksum_sink_hash_get_type ());
}
static void
diff --git a/gst/debugutils/gstclockselect.c b/gst/debugutils/gstclockselect.c
index e0ccef914..4181e635a 100644
--- a/gst/debugutils/gstclockselect.c
+++ b/gst/debugutils/gstclockselect.c
@@ -117,6 +117,8 @@ gst_clock_select_class_init (GstClockSelectClass * klass)
gstelement_class->provide_clock =
GST_DEBUG_FUNCPTR (gst_clock_select_provide_clock);
+
+ gst_type_mark_as_plugin_api (GST_TYPE_CLOCK_SELECT_CLOCK_ID);
}
static void
diff --git a/gst/debugutils/gstcompare.c b/gst/debugutils/gstcompare.c
index 777a8d8e5..0834da62a 100644
--- a/gst/debugutils/gstcompare.c
+++ b/gst/debugutils/gstcompare.c
@@ -176,6 +176,8 @@ gst_compare_class_init (GstCompareClass * klass)
gst_element_class_set_static_metadata (gstelement_class, "Compare buffers",
"Filter/Debug", "Compares incoming buffers",
"Mark Nauwelaerts <mark.nauwelaerts@collabora.co.uk>");
+
+ gst_type_mark_as_plugin_api (GST_COMPARE_METHOD_TYPE);
}
static void
diff --git a/gst/debugutils/gstfakevideosink.c b/gst/debugutils/gstfakevideosink.c
index 0f8f48efd..c4948aa8b 100644
--- a/gst/debugutils/gstfakevideosink.c
+++ b/gst/debugutils/gstfakevideosink.c
@@ -315,4 +315,6 @@ gst_fake_video_sink_class_init (GstFakeVideoSinkClass * klass)
gst_element_class_set_static_metadata (element_class, "Fake Video Sink",
"Video/Sink", "Fake video display that allows zero-copy",
"Nicolas Dufresne <nicolas.dufresne@collabora.com>");
+
+ gst_type_mark_as_plugin_api (GST_TYPE_FAKE_VIDEO_SINK_ALLOCATION_META_FLAGS);
}
diff --git a/gst/fieldanalysis/gstfieldanalysis.c b/gst/fieldanalysis/gstfieldanalysis.c
index 12461cc73..d3f802264 100644
--- a/gst/fieldanalysis/gstfieldanalysis.c
+++ b/gst/fieldanalysis/gstfieldanalysis.c
@@ -287,6 +287,9 @@ gst_field_analysis_class_init (GstFieldAnalysisClass * klass)
gst_element_class_add_static_pad_template (gstelement_class, &src_factory);
gst_element_class_add_static_pad_template (gstelement_class, &sink_factory);
+ gst_type_mark_as_plugin_api (GST_TYPE_FIELDANALYSIS_COMB_METHOD);
+ gst_type_mark_as_plugin_api (GST_TYPE_FIELDANALYSIS_FIELD_METRIC);
+ gst_type_mark_as_plugin_api (GST_TYPE_FIELDANALYSIS_FRAME_METRIC);
}
static gfloat same_parity_sad (GstFieldAnalysis * filter,
diff --git a/gst/geometrictransform/gstgeometrictransform.c b/gst/geometrictransform/gstgeometrictransform.c
index a6c00a8a7..b3f9be506 100644
--- a/gst/geometrictransform/gstgeometrictransform.c
+++ b/gst/geometrictransform/gstgeometrictransform.c
@@ -388,6 +388,8 @@ gst_geometric_transform_class_init (gpointer klass, gpointer class_data)
"What to do with off edge pixels",
GST_GT_OFF_EDGES_PIXELS_METHOD_TYPE, DEFAULT_OFF_EDGE_PIXELS,
GST_PARAM_CONTROLLABLE | G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
+
+ gst_type_mark_as_plugin_api (GST_GT_OFF_EDGES_PIXELS_METHOD_TYPE);
}
static void
diff --git a/gst/geometrictransform/gstmirror.c b/gst/geometrictransform/gstmirror.c
index 31e0a69c1..53edb6698 100644
--- a/gst/geometrictransform/gstmirror.c
+++ b/gst/geometrictransform/gstmirror.c
@@ -226,6 +226,8 @@ gst_mirror_class_init (GstMirrorClass * klass)
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
gstgt_class->map_func = mirror_map;
+
+ gst_type_mark_as_plugin_api (GST_TYPE_MIRROR_MODE);
}
static void
diff --git a/gst/interlace/gstinterlace.c b/gst/interlace/gstinterlace.c
index be51dbc5a..4c654669b 100644
--- a/gst/interlace/gstinterlace.c
+++ b/gst/interlace/gstinterlace.c
@@ -259,6 +259,8 @@ gst_interlace_class_init (GstInterlaceClass * klass)
&gst_interlace_src_template);
element_class->change_state = gst_interlace_change_state;
+
+ gst_type_mark_as_plugin_api (GST_INTERLACE_PATTERN);
}
static void
diff --git a/gst/mpegtsmux/gstbasetsmux.c b/gst/mpegtsmux/gstbasetsmux.c
index a68af9901..63eeb15a2 100644
--- a/gst/mpegtsmux/gstbasetsmux.c
+++ b/gst/mpegtsmux/gstbasetsmux.c
@@ -1990,6 +1990,8 @@ gst_base_ts_mux_class_init (GstBaseTsMuxClass * klass)
gst_element_class_add_static_pad_template_with_gtype (gstelement_class,
&gst_base_ts_mux_src_factory, GST_TYPE_AGGREGATOR_PAD);
+
+ gst_type_mark_as_plugin_api (GST_TYPE_BASE_TS_MUX_PAD);
}
static void
diff --git a/gst/mxf/mxfmux.c b/gst/mxf/mxfmux.c
index 4977c2340..eafc81965 100644
--- a/gst/mxf/mxfmux.c
+++ b/gst/mxf/mxfmux.c
@@ -185,6 +185,8 @@ gst_mxf_mux_class_init (GstMXFMuxClass * klass)
"Codec/Muxer",
"Muxes video/audio streams into a MXF stream",
"Sebastian Dröge <sebastian.droege@collabora.co.uk>");
+
+ gst_type_mark_as_plugin_api (GST_TYPE_MXF_MUX_PAD);
}
static void
diff --git a/gst/netsim/gstnetsim.c b/gst/netsim/gstnetsim.c
index 39368ed15..af436e371 100644
--- a/gst/netsim/gstnetsim.c
+++ b/gst/netsim/gstnetsim.c
@@ -756,6 +756,8 @@ gst_net_sim_class_init (GstNetSimClass * klass)
G_PARAM_READWRITE | G_PARAM_CONSTRUCT | G_PARAM_STATIC_STRINGS));
GST_DEBUG_CATEGORY_INIT (netsim_debug, "netsim", 0, "Network simulator");
+
+ gst_type_mark_as_plugin_api (distribution_get_type ());
}
static gboolean
diff --git a/gst/rawparse/gstaudioparse.c b/gst/rawparse/gstaudioparse.c
index e542d46d1..3f1c4ebd0 100644
--- a/gst/rawparse/gstaudioparse.c
+++ b/gst/rawparse/gstaudioparse.c
@@ -184,6 +184,8 @@ gst_audio_parse_class_init (GstAudioParseClass * klass)
GST_DEBUG_CATEGORY_INIT (gst_audio_parse_debug, "audioparse", 0,
"audioparse element");
+
+ gst_type_mark_as_plugin_api (GST_AUDIO_PARSE_FORMAT);
}
static void
diff --git a/gst/rist/gstristsink.c b/gst/rist/gstristsink.c
index 69bda4f3d..4440e9856 100644
--- a/gst/rist/gstristsink.c
+++ b/gst/rist/gstristsink.c
@@ -1422,4 +1422,6 @@ gst_rist_sink_class_init (GstRistSinkClass * klass)
"Sequence Number Extension",
"Add sequence number extension to packets.", FALSE,
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS | G_PARAM_CONSTRUCT));
+
+ gst_type_mark_as_plugin_api (gst_rist_bonding_method_get_type ());
}
diff --git a/gst/rtmp2/gstrtmp2.c b/gst/rtmp2/gstrtmp2.c
index 22c6399cf..999b26508 100644
--- a/gst/rtmp2/gstrtmp2.c
+++ b/gst/rtmp2/gstrtmp2.c
@@ -26,6 +26,8 @@
#include "gstrtmp2src.h"
#include "gstrtmp2sink.h"
+#include "rtmp/rtmpclient.h"
+
static gboolean
plugin_init (GstPlugin * plugin)
{
@@ -34,6 +36,9 @@ plugin_init (GstPlugin * plugin)
gst_element_register (plugin, "rtmp2sink", GST_RANK_PRIMARY + 1,
GST_TYPE_RTMP2_SINK);
+ gst_type_mark_as_plugin_api (GST_TYPE_RTMP_SCHEME);
+ gst_type_mark_as_plugin_api (GST_TYPE_RTMP_AUTHMOD);
+
return TRUE;
}
diff --git a/gst/timecode/gstavwait.c b/gst/timecode/gstavwait.c
index aa9b215a3..59bf7f2c0 100644
--- a/gst/timecode/gstavwait.c
+++ b/gst/timecode/gstavwait.c
@@ -230,6 +230,8 @@ gst_avwait_class_init (GstAvWaitClass * klass)
&video_src_template);
gst_element_class_add_static_pad_template (gstelement_class,
&video_sink_template);
+
+ gst_type_mark_as_plugin_api (GST_TYPE_AVWAIT_MODE);
}
static void
diff --git a/gst/timecode/gsttimecodestamper.c b/gst/timecode/gsttimecodestamper.c
index 27dbf3a91..4ac015f23 100644
--- a/gst/timecode/gsttimecodestamper.c
+++ b/gst/timecode/gsttimecodestamper.c
@@ -331,6 +331,9 @@ gst_timecodestamper_class_init (GstTimeCodeStamperClass * klass)
trans_class->transform_ip =
GST_DEBUG_FUNCPTR (gst_timecodestamper_transform_ip);
+
+ gst_type_mark_as_plugin_api (GST_TYPE_TIME_CODE_STAMPER_SOURCE);
+ gst_type_mark_as_plugin_api (GST_TYPE_TIME_CODE_STAMPER_SET);
}
static void
diff --git a/gst/yadif/gstyadif.c b/gst/yadif/gstyadif.c
index 0056f7845..e64915418 100644
--- a/gst/yadif/gstyadif.c
+++ b/gst/yadif/gstyadif.c
@@ -160,6 +160,7 @@ gst_yadif_class_init (GstYadifClass * klass)
DEFAULT_MODE,
G_PARAM_READWRITE | G_PARAM_CONSTRUCT | G_PARAM_STATIC_STRINGS));
+ gst_type_mark_as_plugin_api (GST_TYPE_DEINTERLACE_MODES);
}
static void