diff options
author | Tim-Philipp Müller <tim.muller@collabora.co.uk> | 2009-06-09 14:48:56 +0100 |
---|---|---|
committer | Tim-Philipp Müller <tim.muller@collabora.co.uk> | 2009-07-02 01:18:57 +0100 |
commit | 480b92006d212bd63012c23bd0627a7c002e02c2 (patch) | |
tree | 8ce121623bce88bc9e18890014cc4590520f4ab3 | |
parent | 30bc0361f179838a2f539190d2fde87830cb3822 (diff) |
typefindelement: log probability in debug message
-rw-r--r-- | plugins/elements/gsttypefindelement.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/plugins/elements/gsttypefindelement.c b/plugins/elements/gsttypefindelement.c index e1beba12f..bec85ab60 100644 --- a/plugins/elements/gsttypefindelement.c +++ b/plugins/elements/gsttypefindelement.c @@ -162,7 +162,8 @@ gst_type_find_element_have_type (GstTypeFindElement * typefind, { g_assert (caps != NULL); - GST_INFO_OBJECT (typefind, "found caps %" GST_PTR_FORMAT, caps); + GST_INFO_OBJECT (typefind, "found caps %" GST_PTR_FORMAT ", probability=%u", + caps, probability); if (typefind->caps) gst_caps_unref (typefind->caps); typefind->caps = gst_caps_copy (caps); |