mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-09 08:55:33 +00:00
plugins: uddate gst_type_mark_as_plugin_api() calls
This commit is contained in:
parent
f1cb5bf471
commit
1c436201ce
4 changed files with 7 additions and 7 deletions
|
@ -154,7 +154,7 @@ register_enum (const AVClass ** obj, const AVOption * top_opt)
|
|||
g_enum_register_static (enum_name, &g_array_index (values, GEnumValue,
|
||||
0));
|
||||
|
||||
gst_type_mark_as_plugin_api (res);
|
||||
gst_type_mark_as_plugin_api (res, 0);
|
||||
}
|
||||
|
||||
done:
|
||||
|
@ -214,7 +214,7 @@ register_flags (const AVClass ** obj, const AVOption * top_opt)
|
|||
g_flags_register_static (flags_name, &g_array_index (values,
|
||||
GFlagsValue, 0));
|
||||
|
||||
gst_type_mark_as_plugin_api (res);
|
||||
gst_type_mark_as_plugin_api (res, 0);
|
||||
}
|
||||
|
||||
done:
|
||||
|
|
|
@ -182,7 +182,7 @@ gst_ffmpegdeinterlace_class_init (GstFFMpegDeinterlaceClass * klass)
|
|||
|
||||
gobject_class->dispose = gst_ffmpegdeinterlace_dispose;
|
||||
|
||||
gst_type_mark_as_plugin_api (GST_TYPE_FFMPEGDEINTERLACE_MODES);
|
||||
gst_type_mark_as_plugin_api (GST_TYPE_FFMPEGDEINTERLACE_MODES, 0);
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
|
@ -282,9 +282,9 @@ gst_ffmpegviddec_class_init (GstFFMpegVidDecClass * klass)
|
|||
|
||||
GST_DEBUG_CATEGORY_GET (GST_CAT_PERFORMANCE, "GST_PERFORMANCE");
|
||||
|
||||
gst_type_mark_as_plugin_api (GST_FFMPEGVIDDEC_TYPE_LOWRES);
|
||||
gst_type_mark_as_plugin_api (GST_FFMPEGVIDDEC_TYPE_SKIPFRAME);
|
||||
gst_type_mark_as_plugin_api (GST_FFMPEGVIDDEC_TYPE_THREAD_TYPE);
|
||||
gst_type_mark_as_plugin_api (GST_FFMPEGVIDDEC_TYPE_LOWRES, 0);
|
||||
gst_type_mark_as_plugin_api (GST_FFMPEGVIDDEC_TYPE_SKIPFRAME, 0);
|
||||
gst_type_mark_as_plugin_api (GST_FFMPEGVIDDEC_TYPE_THREAD_TYPE, 0);
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
|
@ -197,7 +197,7 @@ gst_ffmpegvidenc_class_init (GstFFMpegVidEncClass * klass)
|
|||
|
||||
gobject_class->finalize = gst_ffmpegvidenc_finalize;
|
||||
|
||||
gst_type_mark_as_plugin_api (GST_TYPE_FFMPEG_PASS);
|
||||
gst_type_mark_as_plugin_api (GST_TYPE_FFMPEG_PASS, 0);
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
Loading…
Reference in a new issue