diff options
author | Tim-Philipp Müller <tim.muller@collabora.co.uk> | 2012-08-02 11:15:16 +0100 |
---|---|---|
committer | Tim-Philipp Müller <tim.muller@collabora.co.uk> | 2012-08-02 11:15:16 +0100 |
commit | 04142a965352a8a554e1475df1cc654f605a4052 (patch) | |
tree | 5f486bbcc2aab25ba813f62159d21b3a29727d29 /tools | |
parent | 09c9a3a694d9a18ab2420ae69b278b754bceb378 (diff) |
Revert "tools: print TOC scope"
This reverts commit ee6ab7c93638a6519acb976699a6ad149d520a95.
The application will probably only ever receive global TOCs,
so don't really need this.
Diffstat (limited to 'tools')
-rw-r--r-- | tools/gst-launch.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/tools/gst-launch.c b/tools/gst-launch.c index 132959013..2c1db34cf 100644 --- a/tools/gst-launch.c +++ b/tools/gst-launch.c @@ -681,7 +681,6 @@ event_loop (GstElement * pipeline, gboolean blocking, GstState target_state) break; case GST_MESSAGE_TOC: if (toc) { - GstTocScope toc_scope; GstToc *toc; GList *entries; gboolean updated; @@ -697,11 +696,6 @@ event_loop (GstElement * pipeline, gboolean blocking, GstState target_state) } gst_message_parse_toc (message, &toc, &updated); - - toc_scope = gst_toc_get_scope (toc); - PRINT (_(" TOC scope: %s\n"), - (toc_scope == GST_TOC_SCOPE_GLOBAL) ? _("global") : _("current")); - /* recursively loop over toc entries */ entries = gst_toc_get_entries (toc); g_list_foreach (entries, print_toc_entry, GUINT_TO_POINTER (0)); |