mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-25 11:11:08 +00:00
ges: discoverer-manager: Don't mark signals as action signals
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/4579>
This commit is contained in:
parent
b34cbe9bf1
commit
4e8af5c41d
2 changed files with 4 additions and 4 deletions
|
@ -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>
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue