Lines Matching refs:dst_q_data
158 struct vdoa_q_data *src_q_data, *dst_q_data; in vdoa_device_run() local
171 dst_q_data = &ctx->q_data[V4L2_M2M_DST]; in vdoa_device_run()
174 if (dst_q_data->pixelformat == V4L2_PIX_FMT_YUYV) in vdoa_device_run()
180 writel(dst_q_data->height << 16 | dst_q_data->width, in vdoa_device_run()
186 writel(src_q_data->bytesperline << 16 | dst_q_data->bytesperline, in vdoa_device_run()
189 if (dst_q_data->pixelformat == V4L2_PIX_FMT_NV12 || in vdoa_device_run()
190 dst_q_data->pixelformat == V4L2_PIX_FMT_NV21) in vdoa_device_run()
191 val = dst_q_data->bytesperline * dst_q_data->height; in vdoa_device_run()
248 struct vdoa_q_data *dst_q_data; in vdoa_context_configure() local
263 dst_q_data = &ctx->q_data[V4L2_M2M_DST]; in vdoa_context_configure()
272 dst_q_data->width = width; in vdoa_context_configure()
273 dst_q_data->height = height; in vdoa_context_configure()
274 dst_q_data->pixelformat = pixelformat; in vdoa_context_configure()
277 dst_q_data->bytesperline = width * 2; in vdoa_context_configure()
278 dst_q_data->sizeimage = dst_q_data->bytesperline * height; in vdoa_context_configure()
282 dst_q_data->bytesperline = width; in vdoa_context_configure()
283 dst_q_data->sizeimage = in vdoa_context_configure()
284 dst_q_data->bytesperline * height * 3 / 2; in vdoa_context_configure()