Home | History | Annotate | Download | only in generic

Lines Matching refs:row

540     /* first row needs to be done so that we can stay one row ahead for vertical zoom */
556 else /* Duplicate the last row */
558 /* copy temp_area row 0 over from last row in the past */
570 /* copy temp_area row 0 over from last row in the past */
1055 int row = (dst_yuv_config->y_height - expanded_frame_height) / 2;
1057 /*int YOffset = row * dst_yuv_config->y_width + col;
1058 int UVOffset = (row>>1) * dst_yuv_config->uv_width + (col>>1);*/
1059 int YOffset = row * dst_yuv_config->y_stride + col;
1060 int UVOffset = (row >> 1) * dst_yuv_config->uv_stride + (col >> 1);
1062 int row = (src_yuv_config->y_height - expanded_frame_height) / 2;
1064 int YOffset = row * src_yuv_config->y_width + col;
1065 int UVOffset = (row >> 1) * src_yuv_config->uv_width + (col >> 1);