From: Tim-Philipp Müller Date: Sat, 6 Apr 2019 13:33:45 +0000 (+0100) Subject: assrender: improve debug logging in video chain X-Git-Tag: 1.19.3~507^2~3443 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e52f33430df83ba070500e450ef2c4b14904a8f9;p=platform%2Fupstream%2Fgstreamer.git assrender: improve debug logging in video chain Print video timestamps only once and enumerate text buffers to make output more concise and nicer to read. --- diff --git a/ext/assrender/gstassrender.c b/ext/assrender/gstassrender.c index b7741a1..65617bb 100644 --- a/ext/assrender/gstassrender.c +++ b/ext/assrender/gstassrender.c @@ -1165,6 +1165,7 @@ gst_ass_render_chain_video (GstPad * pad, GstObject * parent, gboolean in_seg = FALSE; guint64 start, stop, clip_start = 0, clip_stop = 0; ASS_Image *ass_image; + guint n = 0; if (gst_pad_check_reconfigure (render->srcpad)) { if (!gst_ass_render_negotiate (render, NULL)) { @@ -1253,7 +1254,15 @@ wait_for_text_buf: gst_segment_to_running_time (&render->video_segment, GST_FORMAT_TIME, stop); + GST_LOG_OBJECT (render, "V : %" GST_TIME_FORMAT " - %" GST_TIME_FORMAT, + GST_TIME_ARGS (vid_running_time), + GST_TIME_ARGS (vid_running_time_end)); + + if (subtitle_pending == NULL) + GST_LOG_OBJECT (render, "T : no pending subtitles"); + while (subtitle_pending != NULL) { + ++n; /* if the text buffer isn't stamped right, pop it off the * queue and display it for the current video frame only */ @@ -1281,12 +1290,9 @@ wait_for_text_buf: gst_segment_to_running_time (&render->subtitle_segment, GST_FORMAT_TIME, text_end); - GST_LOG_OBJECT (render, "T: %" GST_TIME_FORMAT " - %" GST_TIME_FORMAT, - GST_TIME_ARGS (text_running_time), + GST_LOG_OBJECT (render, "T%u: %" GST_TIME_FORMAT " - " + "%" GST_TIME_FORMAT, n, GST_TIME_ARGS (text_running_time), GST_TIME_ARGS (text_running_time_end)); - GST_LOG_OBJECT (render, "V: %" GST_TIME_FORMAT " - %" GST_TIME_FORMAT, - GST_TIME_ARGS (vid_running_time), - GST_TIME_ARGS (vid_running_time_end)); /* Text too old */ if (text_running_time_end <= vid_running_time) {