Lines Matching defs:q_data_src

451 		struct coda_q_data *q_data_src;
460 q_data_src = get_q_data(ctx, V4L2_BUF_TYPE_VIDEO_OUTPUT);
463 if (q_data_src->fourcc == V4L2_PIX_FMT_JPEG &&
657 const struct coda_q_data *q_data_src;
669 q_data_src = get_q_data(ctx, V4L2_BUF_TYPE_VIDEO_OUTPUT);
678 if (q_data_src->fourcc == V4L2_PIX_FMT_JPEG &&
680 hscale = coda_jpeg_scale(q_data_src->width, f->fmt.pix.width);
681 vscale = coda_jpeg_scale(q_data_src->height, f->fmt.pix.height);
683 f->fmt.pix.width = q_data_src->width >> hscale;
684 f->fmt.pix.height = q_data_src->height >> vscale;
686 if (q_data_src->fourcc == V4L2_PIX_FMT_JPEG) {
702 q_data_src = get_q_data(ctx, V4L2_BUF_TYPE_VIDEO_OUTPUT);
703 codec = coda_find_codec(ctx->dev, q_data_src->fourcc,
857 struct coda_q_data *q_data_src;
864 q_data_src = get_q_data(ctx, V4L2_BUF_TYPE_VIDEO_OUTPUT);
866 if (q_data_src->fourcc == V4L2_PIX_FMT_JPEG &&
868 hscale = coda_jpeg_scale(q_data_src->width, f->fmt.pix.width);
869 vscale = coda_jpeg_scale(q_data_src->height, f->fmt.pix.height);
878 r.width = q_data_src->width >> hscale;
879 r.height = q_data_src->height >> vscale;
889 codec = coda_find_codec(ctx->dev, q_data_src->fourcc,
1971 struct coda_q_data *q_data_src, *q_data_dst;
1984 q_data_src = get_q_data(ctx, V4L2_BUF_TYPE_VIDEO_OUTPUT);
2013 if (q_data_src->fourcc == V4L2_PIX_FMT_JPEG) {
2024 q_data_dst->width = round_up(q_data_src->width, 16);
2025 q_data_dst->height = round_up(q_data_src->height, 16);
2042 q_data_dst->rect.width = q_data_src->width;
2043 q_data_dst->rect.height = q_data_src->height;
2055 if ((q_data_src->rect.width != q_data_dst->width &&
2056 round_up(q_data_src->rect.width, 16) != q_data_dst->width) ||
2057 (q_data_src->rect.height != q_data_dst->height &&
2058 round_up(q_data_src->rect.height, 16) != q_data_dst->height)) {
2060 q_data_src->rect.width, q_data_src->rect.height,