From: Josep Torra Date: Sat, 9 Mar 2013 12:07:59 +0000 (+0100) Subject: omx: Minor changes on debuging info X-Git-Tag: 1.19.3~501^2~638 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=cde5df17fa1541a74d3d4fbb68dc0eaa30fc7c22;p=platform%2Fupstream%2Fgstreamer.git omx: Minor changes on debuging info --- 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; }