Lines Matching defs:q_data_out
268 static void copy_line(struct vim2m_q_data *q_data_out,
271 int x, depth = q_data_out->fmt->depth >> 3;
274 memcpy(dst, src, q_data_out->width * depth);
276 for (x = 0; x < q_data_out->width >> 1; x++) {
287 struct vim2m_q_data *q_data_out,
290 struct vim2m_fmt *out = q_data_out->fmt;
449 struct vim2m_q_data *q_data_in, *q_data_out;
461 q_data_out = get_q_data(ctx, V4L2_BUF_TYPE_VIDEO_CAPTURE);
462 if (!q_data_out)
466 height = q_data_out->height;
467 width = q_data_out->width;
477 out_vb->sequence = q_data_out->sequence++;
496 if (q_data_in->fmt->fourcc == q_data_out->fmt->fourcc &&
497 q_data_in->width == q_data_out->width &&
498 q_data_in->height == q_data_out->height) {
504 copy_line(q_data_out, p, p_out,
515 x_int = q_data_in->width / q_data_out->width;
516 x_fract = q_data_in->width % q_data_out->width;
519 y_in = (y * q_data_in->height) / q_data_out->height;
541 copy_two_pixels(q_data_in, q_data_out,