};
 
 /* find our format description corresponding to the passed v4l2_format */
-static struct vpe_fmt *find_format(struct v4l2_format *f)
+static struct vpe_fmt *__find_format(u32 fourcc)
 {
        struct vpe_fmt *fmt;
        unsigned int k;
 
        for (k = 0; k < ARRAY_SIZE(vpe_formats); k++) {
                fmt = &vpe_formats[k];
-               if (fmt->fourcc == f->fmt.pix.pixelformat)
+               if (fmt->fourcc == fourcc)
                        return fmt;
        }
 
        return NULL;
 }
 
+static struct vpe_fmt *find_format(struct v4l2_format *f)
+{
+       return __find_format(f->fmt.pix.pixelformat);
+}
+
 /*
  * there is one vpe_dev structure in the driver, it is shared by
  * all instances.
        unsigned int stride = 0;
 
        if (!fmt || !(fmt->types & type)) {
-               vpe_err(ctx->dev, "Fourcc format (0x%08x) invalid.\n",
+               vpe_dbg(ctx->dev, "Fourcc format (0x%08x) invalid.\n",
                        pix->pixelformat);
-               return -EINVAL;
+               fmt = __find_format(V4L2_PIX_FMT_YUYV);
        }
 
        if (pix->field != V4L2_FIELD_NONE &&