summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJosep Torra <n770galaxy@gmail.com>2013-03-09 13:07:59 +0100
committerJosep Torra <n770galaxy@gmail.com>2013-03-09 13:18:46 +0100
commitd739bbae1eb29b040bd6e4c8df408e472e9a1e29 (patch)
tree2c0f8ac7cdaff3f8964fd847302f6ace6ce11796
parent4012fdae64bfd7f5cdb96c72b69b5fc518b64e52 (diff)
downloadgst-omx-d739bbae1eb29b040bd6e4c8df408e472e9a1e29.tar.gz
omx: Minor changes on debuging info
-rw-r--r--omx/gstomxvideodec.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/omx/gstomxvideodec.c b/omx/gstomxvideodec.c
index 8a4abba..5035a3e 100644
--- a/omx/gstomxvideodec.c
+++ b/omx/gstomxvideodec.c
@@ -408,7 +408,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;
}