summaryrefslogtreecommitdiff
path: root/gst-libs
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim.muller@collabora.co.uk>2011-11-25 11:37:39 +0000
committerTim-Philipp Müller <tim.muller@collabora.co.uk>2011-11-25 11:37:57 +0000
commitf78e9e168449ee8be18e6cd6d95afd73faaad733 (patch)
tree47276668afbcf5a5afbeec265005b7298b728cbe /gst-libs
parentca772ed3211b7faad8452af105f2643af43ccdac (diff)
basevideodecoder: some more debug logging
Diffstat (limited to 'gst-libs')
-rw-r--r--gst-libs/gst/video/gstbasevideodecoder.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/gst-libs/gst/video/gstbasevideodecoder.c b/gst-libs/gst/video/gstbasevideodecoder.c
index 24bf16fbe..f396ca072 100644
--- a/gst-libs/gst/video/gstbasevideodecoder.c
+++ b/gst-libs/gst/video/gstbasevideodecoder.c
@@ -1398,9 +1398,12 @@ gst_base_video_decoder_prepare_finish_frame (GstBaseVideoDecoder *
break;
}
- for (l = g_list_last (events); l; l = l->prev)
+ for (l = g_list_last (events); l; l = l->prev) {
+ GST_LOG_OBJECT (base_video_decoder, "pushing %s event",
+ GST_EVENT_TYPE_NAME (l->data));
gst_pad_push_event (GST_BASE_VIDEO_CODEC_SRC_PAD (base_video_decoder),
l->data);
+ }
g_list_free (events);
if (GST_CLOCK_TIME_IS_VALID (frame->presentation_timestamp)) {