diff --git a/gst/videoconvert/videoconvert.c b/gst/videoconvert/videoconvert.c index 1cac84d463..543f2a94c7 100644 --- a/gst/videoconvert/videoconvert.c +++ b/gst/videoconvert/videoconvert.c @@ -1745,12 +1745,14 @@ videoconvert_convert_generic (VideoConvert * convert, GstVideoFrame * dest, int j; if (convert->getline == NULL) { - GST_ERROR ("no getline"); + GST_ERROR ("no getline for format %s", + gst_video_format_to_string (GST_VIDEO_FRAME_FORMAT (src))); return; } if (convert->putline == NULL) { - GST_ERROR ("no putline"); + GST_ERROR ("no putline for format %s", + gst_video_format_to_string (GST_VIDEO_FRAME_FORMAT (dest))); return; }