summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian@centricular.com>2023-05-09 09:25:25 +0300
committerGStreamer Marge Bot <gitlab-merge-bot@gstreamer-foundation.org>2023-05-09 18:19:11 +0000
commit4e8af5c41d65cfed2c39b38da70daa0da0dc7a83 (patch)
tree4a6c15691440843caaa8956f9af5480af028672c
parentb34cbe9bf187cfe5aa3038c8eedaa863163757c8 (diff)
downloadgstreamer-4e8af5c41d65cfed2c39b38da70daa0da0dc7a83.tar.gz
ges: discoverer-manager: Don't mark signals as action signals
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/4579>
-rw-r--r--girs/GES-1.0.gir4
-rw-r--r--subprojects/gst-editing-services/ges/ges-discoverer-manager.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/girs/GES-1.0.gir b/girs/GES-1.0.gir
index 809b86c2d3..8e403664f7 100644
--- a/girs/GES-1.0.gir
+++ b/girs/GES-1.0.gir
@@ -3202,7 +3202,7 @@ if no track elements are created or an error occurred.</doc>
<property name="use-cache" writable="1" construct="1" transfer-ownership="none">
<type name="gboolean" c:type="gboolean"/>
</property>
- <glib:signal name="discovered" when="last" action="1" version="1.24">
+ <glib:signal name="discovered" when="last" version="1.24">
<attribute name="doc.skip" value="true"/>
<return-value transfer-ownership="none">
<type name="none" c:type="void"/>
@@ -3218,7 +3218,7 @@ if no track elements are created or an error occurred.</doc>
</parameter>
</parameters>
</glib:signal>
- <glib:signal name="load-serialized-info" when="last" action="1" version="1.24">
+ <glib:signal name="load-serialized-info" when="last" version="1.24">
<doc xml:space="preserve" filename="../subprojects/gst-editing-services/ges/ges-discoverer-manager.c">Retrieves information about a URI from and external source of information,
like a cache file. This is used by the discoverer to speed up the
discovery.</doc>
diff --git a/subprojects/gst-editing-services/ges/ges-discoverer-manager.c b/subprojects/gst-editing-services/ges/ges-discoverer-manager.c
index 08e0df54a5..8305a32c44 100644
--- a/subprojects/gst-editing-services/ges/ges-discoverer-manager.c
+++ b/subprojects/gst-editing-services/ges/ges-discoverer-manager.c
@@ -151,7 +151,7 @@ ges_discoverer_manager_class_init (GESDiscovererManagerClass * klass)
*/
signals[LOAD_SERIALIZED_INFO_SIGNAL] =
g_signal_new ("load-serialized-info", G_TYPE_FROM_CLASS (klass),
- G_SIGNAL_RUN_LAST | G_SIGNAL_ACTION,
+ G_SIGNAL_RUN_LAST,
0, NULL, NULL, NULL, GST_TYPE_DISCOVERER_INFO, 1, G_TYPE_STRING);
/**
@@ -164,7 +164,7 @@ ges_discoverer_manager_class_init (GESDiscovererManagerClass * klass)
*/
signals[DISCOVERER_SIGNAL] =
g_signal_new ("discovered", G_TYPE_FROM_CLASS (klass),
- G_SIGNAL_RUN_LAST | G_SIGNAL_ACTION,
+ G_SIGNAL_RUN_LAST,
0, NULL, NULL, NULL, G_TYPE_NONE, 2, GST_TYPE_DISCOVERER_INFO,
G_TYPE_ERROR);
}