tools: Fix discoverer deprecation

The only information provided by "misc" was the missing plugins which
is already handled with another API
This commit is contained in:
Edward Hervey 2018-04-02 08:43:17 +02:00 committed by Edward Hervey
parent d69fa0c78e
commit cb28f49625
2 changed files with 6 additions and 0 deletions

View file

@ -231,7 +231,9 @@ GST_START_TEST (test_disco_missing_plugins)
result = gst_discoverer_info_get_result (info);
GST_INFO ("result: %d, error message: %s", result, err->message);
fail_unless_equals_int (result, GST_DISCOVERER_MISSING_PLUGINS);
#ifndef GST_DISABLE_DEPRECATED
GST_INFO ("misc: %" GST_PTR_FORMAT, gst_discoverer_info_get_misc (info));
#endif
gst_discoverer_info_unref (info);
g_error_free (err);

View file

@ -66,7 +66,9 @@ gst_stream_information_to_string (GstDiscovererStreamInfo * info, GString * s,
{
gchar *tmp;
GstCaps *caps;
#ifndef GST_DISABLE_DEPRECATED
const GstStructure *misc;
#endif
my_g_string_append_printf (s, depth, "Codec:\n");
caps = gst_discoverer_stream_info_get_caps (info);
@ -75,6 +77,7 @@ gst_stream_information_to_string (GstDiscovererStreamInfo * info, GString * s,
my_g_string_append_printf (s, depth, " %s\n", tmp);
g_free (tmp);
#ifndef GST_DISABLE_DEPRECATED
my_g_string_append_printf (s, depth, "Additional info:\n");
if ((misc = gst_discoverer_stream_info_get_misc (info))) {
tmp = gst_structure_to_string (misc);
@ -83,6 +86,7 @@ gst_stream_information_to_string (GstDiscovererStreamInfo * info, GString * s,
} else {
my_g_string_append_printf (s, depth, " None\n");
}
#endif
my_g_string_append_printf (s, depth, "Stream ID: %s\n",
gst_discoverer_stream_info_get_stream_id (info));