summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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);
}