decodebin: Also include the raw caps in the error message, not just the human readable description

This commit is contained in:
Sebastian Dröge 2014-09-02 15:37:38 +03:00
parent 56899b596e
commit 5cbefaa9a2

View file

@ -4318,8 +4318,10 @@ gst_decode_chain_expose (GstDecodeChain * chain, GList ** endpads,
g_string_append_c (missing_plugin_details, '\n');
} else {
gchar *desc = gst_pb_utils_get_codec_description (chain->endcaps);
g_string_append_printf (missing_plugin_details, "Missing decoder: %s\n",
desc);
gchar *caps_str = gst_caps_to_string (chain->endcaps);
g_string_append_printf (missing_plugin_details,
"Missing decoder: %s (%s)\n", desc, caps_str);
g_free (caps_str);
g_free (desc);
}
*missing_plugin = TRUE;