Lines Matching refs:stride

499 		ctx->stride[0] = ALIGN(ctx->img_width, S5P_FIMV_NV12MT_HALIGN_V6);
500 ctx->stride[1] = ALIGN(ctx->img_width, S5P_FIMV_NV12MT_HALIGN_V6);
501 ctx->luma_size = calc_plane(ctx->stride[0], ctx->img_height);
502 ctx->chroma_size = calc_plane(ctx->stride[1], (ctx->img_height / 2));
506 ctx->stride[0] = ALIGN(ctx->img_width, S5P_FIMV_NV12MT_HALIGN_V6);
507 ctx->stride[1] = ALIGN(ctx->img_width / 2, S5P_FIMV_NV12MT_HALIGN_V6);
508 ctx->stride[2] = ALIGN(ctx->img_width / 2, S5P_FIMV_NV12MT_HALIGN_V6);
509 ctx->luma_size = calc_plane(ctx->stride[0], ctx->img_height);
510 ctx->chroma_size = calc_plane(ctx->stride[1], (ctx->img_height / 2));
511 ctx->chroma_size_1 = calc_plane(ctx->stride[2], (ctx->img_height / 2));
550 ctx->stride[0] = ALIGN(ctx->img_width, S5P_FIMV_NV12M_HALIGN_V6);
551 ctx->stride[1] = ALIGN(ctx->img_width, S5P_FIMV_NV12M_HALIGN_V6);
552 ctx->luma_size = ctx->stride[0] * ALIGN(ctx->img_height, 16);
553 ctx->chroma_size = ctx->stride[0] * ALIGN(ctx->img_height / 2, 16);
557 ctx->stride[0] = ALIGN(ctx->img_width, S5P_FIMV_NV12M_HALIGN_V6);
558 ctx->stride[1] = ALIGN(ctx->img_width / 2, S5P_FIMV_NV12M_HALIGN_V6);
559 ctx->stride[2] = ALIGN(ctx->img_width / 2, S5P_FIMV_NV12M_HALIGN_V6);
560 ctx->luma_size = ctx->stride[0] * ALIGN(ctx->img_height, 16);
561 ctx->chroma_size = ctx->stride[1] * ALIGN(ctx->img_height / 2, 16);
562 ctx->chroma_size_1 = ctx->stride[2] * ALIGN(ctx->img_height / 2, 16);
570 ctx->stride[0] = ctx->buf_width;
571 ctx->stride[1] = ctx->buf_width;
633 writel(ctx->stride[0], mfc_regs->d_first_plane_dpb_stride_size);
634 writel(ctx->stride[1], mfc_regs->d_second_plane_dpb_stride_size);
637 writel(ctx->stride[2], mfc_regs->d_third_plane_dpb_stride_size);
1880 /* Set stride lengths for v7 & above */
1882 writel(ctx->stride[0], mfc_regs->e_source_first_plane_stride);
1883 writel(ctx->stride[1], mfc_regs->e_source_second_plane_stride);
1886 writel(ctx->stride[2], mfc_regs->e_source_third_plane_stride);