Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/GStreamer/gstreamer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStéphane Cerveau <scerveau@collabora.com>2021-08-02 15:23:58 +0300
committerGStreamer Marge Bot <gitlab-merge-bot@gstreamer-foundation.org>2021-08-03 12:47:12 +0300
commit77ffed293fe8c5e41dd0354558615fa0d23c5a75 (patch)
tree56f4908fd5500e5b2c2de2293c1a70e89c73d29e
parent00e1a36c4f751bcf239ac1dd781e380e9846a5c6 (diff)
identity: provide a log to check the buffers
In order to not rely only on app to display the message from identity, display the message in the logs too. Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/863>
-rw-r--r--plugins/elements/gstidentity.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/plugins/elements/gstidentity.c b/plugins/elements/gstidentity.c
index 74b9f737f8..25bdae9e11 100644
--- a/plugins/elements/gstidentity.c
+++ b/plugins/elements/gstidentity.c
@@ -707,6 +707,7 @@ gst_identity_update_last_message_for_buffer (GstIdentity * identity,
GST_BUFFER_FLAGS (buf), flag_str, meta_str ? meta_str : "none", buf);
g_free (flag_str);
g_free (meta_str);
+ GST_TRACE_OBJECT (identity, "%s", identity->last_message);
GST_OBJECT_UNLOCK (identity);