mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-11 01:45:33 +00:00
docs: mark more types as plugin API
This commit is contained in:
parent
c6d2e33a98
commit
c897fe2b73
6 changed files with 10 additions and 0 deletions
|
@ -128,6 +128,8 @@ gst_gtk_base_sink_class_init (GstGtkBaseSinkClass * klass)
|
|||
gstbasesink_class->stop = gst_gtk_base_sink_stop;
|
||||
|
||||
gstvideosink_class->show_frame = gst_gtk_base_sink_show_frame;
|
||||
|
||||
gst_type_mark_as_plugin_api (GST_TYPE_GTK_BASE_SINK, 0);
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
|
@ -190,6 +190,7 @@ gst_vpx_dec_class_init (GstVPXDecClass * klass)
|
|||
GST_DEBUG_CATEGORY_INIT (gst_vpxdec_debug, "vpxdec", 0, "VPX Decoder");
|
||||
|
||||
gst_type_mark_as_plugin_api (GST_VPX_DEC_TYPE_POST_PROCESSING_FLAGS, 0);
|
||||
gst_type_mark_as_plugin_api (GST_TYPE_VPX_DEC, 0);
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
|
@ -658,6 +658,7 @@ gst_vpx_enc_class_init (GstVPXEncClass * klass)
|
|||
gst_type_mark_as_plugin_api (GST_VPX_ENC_SCALING_MODE_TYPE, 0);
|
||||
gst_type_mark_as_plugin_api (GST_VPX_ENC_TOKEN_PARTITIONS_TYPE, 0);
|
||||
gst_type_mark_as_plugin_api (GST_VPX_ENC_ER_FLAGS_TYPE, 0);
|
||||
gst_type_mark_as_plugin_api (GST_TYPE_VPX_ENC, 0);
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
|
@ -584,6 +584,8 @@ gst_audio_fx_base_fir_filter_class_init (GstAudioFXBaseFIRFilterClass * klass)
|
|||
trans_class->transform_size =
|
||||
GST_DEBUG_FUNCPTR (gst_audio_fx_base_fir_filter_transform_size);
|
||||
filter_class->setup = GST_DEBUG_FUNCPTR (gst_audio_fx_base_fir_filter_setup);
|
||||
|
||||
gst_type_mark_as_plugin_api (GST_TYPE_AUDIO_FX_BASE_FIR_FILTER, 0);
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
|
@ -118,6 +118,8 @@ gst_audio_fx_base_iir_filter_class_init (GstAudioFXBaseIIRFilterClass * klass)
|
|||
GST_DEBUG_FUNCPTR (gst_audio_fx_base_iir_filter_transform_ip);
|
||||
trans_class->transform_ip_on_passthrough = FALSE;
|
||||
trans_class->stop = GST_DEBUG_FUNCPTR (gst_audio_fx_base_iir_filter_stop);
|
||||
|
||||
gst_type_mark_as_plugin_api (GST_TYPE_AUDIO_FX_BASE_IIR_FILTER, 0);
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
|
@ -90,6 +90,8 @@ gst_auto_detect_class_init (GstAutoDetectClass * klass)
|
|||
g_param_spec_boolean ("sync", "Sync",
|
||||
"Sync on the clock", DEFAULT_SYNC,
|
||||
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
||||
|
||||
gst_type_mark_as_plugin_api (GST_TYPE_AUTO_DETECT, 0);
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
Loading…
Reference in a new issue