summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLionel Landwerlin <lionel.g.landwerlin@intel.com>2015-02-11 13:06:47 +0000
committerLionel Landwerlin <lionel.g.landwerlin@intel.com>2015-06-19 11:28:08 +0100
commitb8879f39bb1cfa7816a5a070ba86829f7992e6fa (patch)
tree0deb77e4cafbb9a84483a18df3a80e71d58f7c40
parent8c12612f96cd1b8ec0f75c49206cd33da0b844b6 (diff)
downloadclutter-gst-b8879f39bb1cfa7816a5a070ba86829f7992e6fa.tar.gz
video-sink: print out renderer name in debug messages
-rw-r--r--clutter-gst/clutter-gst-video-sink.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/clutter-gst/clutter-gst-video-sink.c b/clutter-gst/clutter-gst-video-sink.c
index 9037b94..6136027 100644
--- a/clutter-gst/clutter-gst-video-sink.c
+++ b/clutter-gst/clutter-gst-video-sink.c
@@ -2012,13 +2012,15 @@ clutter_gst_source_dispatch (GSource *source,
if (gst_buffer_get_video_gl_texture_upload_meta (buffer) != NULL) {
GST_DEBUG_OBJECT (gst_source->sink,
- "Trying to upload buffer %p with GL", buffer);
+ "Trying to upload buffer %p with GL using renderer %s",
+ buffer, priv->renderer->name);
if (!priv->renderer->upload_gl (gst_source->sink, buffer)) {
goto fail_upload;
}
} else {
GST_DEBUG_OBJECT (gst_source->sink,
- "Trying to upload buffer %p with software", buffer);
+ "Trying to upload buffer %p with software using renderer %s",
+ buffer, priv->renderer->name);
if (!priv->renderer->upload (gst_source->sink, buffer))
goto fail_upload;
}