plugins: uddate gst_type_mark_as_plugin_api() calls
authorMathieu Duponchelle <mathieu@centricular.com>
Fri, 5 Jun 2020 22:43:02 +0000 (00:43 +0200)
committerMathieu Duponchelle <mathieu@centricular.com>
Fri, 5 Jun 2020 22:43:02 +0000 (00:43 +0200)
ext/libav/gstavcfg.c
ext/libav/gstavdeinterlace.c
ext/libav/gstavviddec.c
ext/libav/gstavvidenc.c

index 21ab961..7f289d7 100644 (file)
@@ -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:
index 9b57cd5..15159dd 100644 (file)
@@ -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
index e97aa58..9f784f4 100644 (file)
@@ -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
index 2aecf15..f454de1 100644 (file)
@@ -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