summaryrefslogtreecommitdiff
path: root/sys/decklink
diff options
context:
space:
mode:
authorMathieu Duponchelle <mathieu@centricular.com>2020-06-06 00:40:42 +0200
committerMathieu Duponchelle <mathieu@centricular.com>2020-06-06 00:40:42 +0200
commita048ce81d4276641a5c84b17cbfdfaf55f0d723e (patch)
treea7de49489edac58037ba5eb3910f46f9c9032e86 /sys/decklink
parenta38ac7a865f651bd0ebc3749635d2388f7e63f40 (diff)
downloadgstreamer-plugins-bad-a048ce81d4276641a5c84b17cbfdfaf55f0d723e.tar.gz
plugins: uddate gst_type_mark_as_plugin_api() calls
Diffstat (limited to 'sys/decklink')
-rw-r--r--sys/decklink/gstdecklink.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/sys/decklink/gstdecklink.cpp b/sys/decklink/gstdecklink.cpp
index 1c67cb268..0f0e45fe3 100644
--- a/sys/decklink/gstdecklink.cpp
+++ b/sys/decklink/gstdecklink.cpp
@@ -2055,14 +2055,14 @@ plugin_init (GstPlugin * plugin)
gst_device_provider_register (plugin, "decklinkdeviceprovider",
GST_RANK_PRIMARY, GST_TYPE_DECKLINK_DEVICE_PROVIDER);
- gst_type_mark_as_plugin_api (GST_TYPE_DECKLINK_AUDIO_CHANNELS);
- gst_type_mark_as_plugin_api (GST_TYPE_DECKLINK_AUDIO_CONNECTION);
- gst_type_mark_as_plugin_api (GST_TYPE_DECKLINK_DUPLEX_MODE);
- gst_type_mark_as_plugin_api (GST_TYPE_DECKLINK_KEYER_MODE);
- gst_type_mark_as_plugin_api (GST_TYPE_DECKLINK_MODE);
- gst_type_mark_as_plugin_api (GST_TYPE_DECKLINK_TIMECODE_FORMAT);
- gst_type_mark_as_plugin_api (GST_TYPE_DECKLINK_VIDEO_FORMAT);
- gst_type_mark_as_plugin_api (GST_TYPE_DECKLINK_CONNECTION);
+ gst_type_mark_as_plugin_api (GST_TYPE_DECKLINK_AUDIO_CHANNELS, (GstPluginAPIFlags) 0);
+ gst_type_mark_as_plugin_api (GST_TYPE_DECKLINK_AUDIO_CONNECTION, (GstPluginAPIFlags) 0);
+ gst_type_mark_as_plugin_api (GST_TYPE_DECKLINK_DUPLEX_MODE, (GstPluginAPIFlags) 0);
+ gst_type_mark_as_plugin_api (GST_TYPE_DECKLINK_KEYER_MODE, (GstPluginAPIFlags) 0);
+ gst_type_mark_as_plugin_api (GST_TYPE_DECKLINK_MODE, (GstPluginAPIFlags) 0);
+ gst_type_mark_as_plugin_api (GST_TYPE_DECKLINK_TIMECODE_FORMAT, (GstPluginAPIFlags) 0);
+ gst_type_mark_as_plugin_api (GST_TYPE_DECKLINK_VIDEO_FORMAT, (GstPluginAPIFlags) 0);
+ gst_type_mark_as_plugin_api (GST_TYPE_DECKLINK_CONNECTION, (GstPluginAPIFlags) 0);
return TRUE;
}