Lines Matching defs:q_data_out
263 static void copy_line(struct vim2m_q_data *q_data_out,
266 int x, depth = q_data_out->fmt->depth >> 3;
269 memcpy(dst, src, q_data_out->width * depth);
271 for (x = 0; x < q_data_out->width >> 1; x++) {
282 struct vim2m_q_data *q_data_out,
285 struct vim2m_fmt *out = q_data_out->fmt;
444 struct vim2m_q_data *q_data_in, *q_data_out;
456 q_data_out = get_q_data(ctx, V4L2_BUF_TYPE_VIDEO_CAPTURE);
457 if (!q_data_out)
461 height = q_data_out->height;
462 width = q_data_out->width;
472 out_vb->sequence = q_data_out->sequence++;
491 if (q_data_in->fmt->fourcc == q_data_out->fmt->fourcc &&
492 q_data_in->width == q_data_out->width &&
493 q_data_in->height == q_data_out->height) {
499 copy_line(q_data_out, p, p_out,
510 x_int = q_data_in->width / q_data_out->width;
511 x_fract = q_data_in->width % q_data_out->width;
514 y_in = (y * q_data_in->height) / q_data_out->height;
536 copy_two_pixels(q_data_in, q_data_out,