From cde5df17fa1541a74d3d4fbb68dc0eaa30fc7c22 Mon Sep 17 00:00:00 2001 From: Josep Torra Date: Sat, 9 Mar 2013 13:07:59 +0100 Subject: [PATCH] omx: Minor changes on debuging info --- omx/gstomxvideodec.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/omx/gstomxvideodec.c b/omx/gstomxvideodec.c index a2f9143..1279ba1 100644 --- a/omx/gstomxvideodec.c +++ b/omx/gstomxvideodec.c @@ -1021,7 +1021,9 @@ gst_omx_video_dec_fill_buffer (GstOMXVideoDec * self, if (vinfo->width != port_def->format.video.nFrameWidth || vinfo->height != port_def->format.video.nFrameHeight) { - GST_ERROR_OBJECT (self, "Width or height do not match"); + GST_ERROR_OBJECT (self, "Resolution do not match. port: %dx%d vinfo: %dx%d", + port_def->format.video.nFrameWidth, port_def->format.video.nFrameHeight, + vinfo->width, vinfo->height); goto done; } -- 2.7.4