summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorArun Raghavan <arun.raghavan@collabora.co.uk>2010-10-04 15:48:51 +0530
committerEdward Hervey <bilboed@bilboed.com>2010-10-04 18:16:50 +0200
commitf55529e8d095816af4f8f30c3dbfc3e99de5f3d3 (patch)
treed81641288b0779aafd2b0c86bc995f4a57ec6bad /tools
parent88cf7a2156ed0865f72b3daa362bcc30fc26e518 (diff)
downloadgstreamer-plugins-base-f55529e8d095816af4f8f30c3dbfc3e99de5f3d3.tar.gz
gst-discoverer: The 'ready' signal was renamed to 'finished'
Diffstat (limited to 'tools')
-rw-r--r--tools/gst-discoverer.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/gst-discoverer.c b/tools/gst-discoverer.c
index d547f0d9b..f761d8a81 100644
--- a/tools/gst-discoverer.c
+++ b/tools/gst-discoverer.c
@@ -378,7 +378,7 @@ _run_async (PrivStruct * ps)
}
static void
-_discoverer_ready (GstDiscoverer * dc, GMainLoop * ml)
+_discoverer_finished (GstDiscoverer * dc, GMainLoop * ml)
{
g_main_loop_quit (ml);
}
@@ -448,7 +448,7 @@ main (int argc, char **argv)
/* connect signals */
g_signal_connect (dc, "discovered", G_CALLBACK (_new_discovered_uri), NULL);
- g_signal_connect (dc, "ready", G_CALLBACK (_discoverer_ready), ml);
+ g_signal_connect (dc, "finished", G_CALLBACK (_discoverer_finished), ml);
gst_discoverer_start (dc);
/* run mainloop */