diff --git a/ChangeLog b/ChangeLog index 369a9e59d1..36cb7a5a45 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2008-11-21 Wim Taymans + + * tools/gst-launch.c: (event_loop): + Make gst-launch handle LATENCY messages and make it recalculate the + latency. + 2008-11-20 Michael Smith * plugins/elements/gstfilesrc.c: diff --git a/common b/common index edfb4b44ea..e4b2fe4472 160000 --- a/common +++ b/common @@ -1 +1 @@ -Subproject commit edfb4b44ea433b0b83b8a2f27a6e0bcbccdc3f2f +Subproject commit e4b2fe44724e1c1a6e816ae4fbbae43d7f68f1ef diff --git a/tools/gst-launch.c b/tools/gst-launch.c index 0bc91d2810..102da0bec6 100644 --- a/tools/gst-launch.c +++ b/tools/gst-launch.c @@ -549,6 +549,12 @@ event_loop (GstElement * pipeline, gboolean blocking, GstState target_state) } break; } + case GST_MESSAGE_LATENCY: + { + fprintf (stderr, _("Redistribute latency...\n")); + gst_bin_recalculate_latency (GST_BIN (pipeline)); + break; + } case GST_MESSAGE_APPLICATION:{ const GstStructure *s;