summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Dufresne <nicolas.dufresne@collabora.com>2023-04-17 16:10:34 -0400
committerGStreamer Marge Bot <gitlab-merge-bot@gstreamer-foundation.org>2023-05-02 14:42:43 +0000
commit0900b41d002ec964b0413c4da437c23a3e7b16b8 (patch)
tree06834cf94036063a5f63e92599ddf6665685b6dc
parentba6f68d4c20cd8aa03c686cd6ab19152d1d7deea (diff)
downloadgstreamer-0900b41d002ec964b0413c4da437c23a3e7b16b8.tar.gz
v4l2: videodec: Improve few logs
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/4525>
-rw-r--r--subprojects/gst-plugins-good/sys/v4l2/gstv4l2videodec.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/subprojects/gst-plugins-good/sys/v4l2/gstv4l2videodec.c b/subprojects/gst-plugins-good/sys/v4l2/gstv4l2videodec.c
index 7177e29acc..2881ee718e 100644
--- a/subprojects/gst-plugins-good/sys/v4l2/gstv4l2videodec.c
+++ b/subprojects/gst-plugins-good/sys/v4l2/gstv4l2videodec.c
@@ -713,6 +713,8 @@ gst_v4l2_video_dec_wait_for_src_ch (GstV4l2VideoDec * self)
if (!self->wait_for_source_change)
return GST_FLOW_OK;
+ GST_DEBUG_OBJECT (self, "Waiting for source change event");
+
GST_VIDEO_DECODER_STREAM_UNLOCK (GST_VIDEO_DECODER (self));
flowret = gst_v4l2_object_poll (self->v4l2capture, GST_CLOCK_TIME_NONE);
GST_VIDEO_DECODER_STREAM_LOCK (GST_VIDEO_DECODER (self));
@@ -739,6 +741,8 @@ gst_v4l2_video_dec_loop (GstVideoDecoder * decoder)
GstBuffer *buffer = NULL;
GstFlowReturn ret;
+ GST_LOG_OBJECT (self, "Looping.");
+
GST_VIDEO_DECODER_STREAM_LOCK (decoder);
if (G_UNLIKELY (!GST_V4L2_IS_ACTIVE (self->v4l2capture))) {
ret = gst_v4l2_video_dec_wait_for_src_ch (self);
@@ -761,7 +765,7 @@ gst_v4l2_video_dec_loop (GstVideoDecoder * decoder)
}
GST_VIDEO_DECODER_STREAM_UNLOCK (decoder);
- GST_LOG_OBJECT (decoder, "Allocate output buffer");
+ GST_LOG_OBJECT (decoder, "Acquire output buffer");
self->output_flow = GST_FLOW_OK;