mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 06:54:49 +00:00
docs: expand GstDiscoverer::discovered signal docs a little
This commit is contained in:
parent
a6fc7732c1
commit
26ec6d49a1
1 changed files with 9 additions and 4 deletions
|
@ -237,9 +237,15 @@ gst_discoverer_class_init (GstDiscovererClass * klass)
|
||||||
* @discoverer: the #GstDiscoverer
|
* @discoverer: the #GstDiscoverer
|
||||||
* @info: the results #GstDiscovererInfo
|
* @info: the results #GstDiscovererInfo
|
||||||
* @error: (type GLib.Error): #GError, which will be non-NULL if an error
|
* @error: (type GLib.Error): #GError, which will be non-NULL if an error
|
||||||
* occurred during discovery
|
* occurred during discovery. You must not
|
||||||
|
* free this #GError, it will be freed by
|
||||||
|
* the discoverer.
|
||||||
*
|
*
|
||||||
* Will be emitted when all information on a URI could be discovered.
|
* Will be emitted when all information on a URI could be discovered, or
|
||||||
|
* an error ocurred.
|
||||||
|
*
|
||||||
|
* When an error occurs, @info might still contain some partial information,
|
||||||
|
* depending on the circumstances of the error.
|
||||||
*/
|
*/
|
||||||
gst_discoverer_signals[SIGNAL_DISCOVERED] =
|
gst_discoverer_signals[SIGNAL_DISCOVERED] =
|
||||||
g_signal_new ("discovered", G_TYPE_FROM_CLASS (klass), G_SIGNAL_RUN_LAST,
|
g_signal_new ("discovered", G_TYPE_FROM_CLASS (klass), G_SIGNAL_RUN_LAST,
|
||||||
|
@ -264,8 +270,7 @@ gst_discoverer_class_init (GstDiscovererClass * klass)
|
||||||
gst_discoverer_signals[SIGNAL_SOURCE_SETUP] =
|
gst_discoverer_signals[SIGNAL_SOURCE_SETUP] =
|
||||||
g_signal_new ("source-setup", G_TYPE_FROM_CLASS (klass),
|
g_signal_new ("source-setup", G_TYPE_FROM_CLASS (klass),
|
||||||
G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstDiscovererClass, source_setup),
|
G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (GstDiscovererClass, source_setup),
|
||||||
NULL, NULL, g_cclosure_marshal_generic, G_TYPE_NONE, 1,
|
NULL, NULL, g_cclosure_marshal_generic, G_TYPE_NONE, 1, GST_TYPE_ELEMENT);
|
||||||
GST_TYPE_ELEMENT);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
|
|
Loading…
Reference in a new issue