Searched refs:col (Results 1 - 25 of 56) sorted by relevance

123

/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/common/
H A Dmv.h23 short col; member in struct:__anon523
H A Dfindnearmv.h31 mvp->as_mv.col *= -1;
39 if (mv->as_mv.col < (xd->mb_to_left_edge - LEFT_TOP_MARGIN))
40 mv->as_mv.col = xd->mb_to_left_edge - LEFT_TOP_MARGIN;
41 else if (mv->as_mv.col > xd->mb_to_right_edge + RIGHT_BOTTOM_MARGIN)
42 mv->as_mv.col = xd->mb_to_right_edge + RIGHT_BOTTOM_MARGIN;
53 mv->as_mv.col = (mv->as_mv.col < mb_to_left_edge) ?
54 mb_to_left_edge : mv->as_mv.col;
55 mv->as_mv.col = (mv->as_mv.col > mb_to_right_edg
[all...]
H A Dreconinter.c131 ptr = base_pre + d->offset + (d->bmi.mv.as_mv.row >> 3) * pre_stride + (d->bmi.mv.as_mv.col >> 3);
133 if (d->bmi.mv.as_mv.row & 7 || d->bmi.mv.as_mv.col & 7)
135 sppf(ptr, pre_stride, d->bmi.mv.as_mv.col & 7, d->bmi.mv.as_mv.row & 7, pred_ptr, pitch);
154 ptr = base_pre + d->offset + (d->bmi.mv.as_mv.row >> 3) * pre_stride + (d->bmi.mv.as_mv.col >> 3);
156 if (d->bmi.mv.as_mv.row & 7 || d->bmi.mv.as_mv.col & 7)
158 x->subpixel_predict8x8(ptr, pre_stride, d->bmi.mv.as_mv.col & 7, d->bmi.mv.as_mv.row & 7, dst, dst_stride);
169 ptr = base_pre + d->offset + (d->bmi.mv.as_mv.row >> 3) * pre_stride + (d->bmi.mv.as_mv.col >> 3);
171 if (d->bmi.mv.as_mv.row & 7 || d->bmi.mv.as_mv.col & 7)
173 x->subpixel_predict8x4(ptr, pre_stride, d->bmi.mv.as_mv.col & 7, d->bmi.mv.as_mv.row & 7, dst, dst_stride);
185 ptr = base_pre + d->offset + (d->bmi.mv.as_mv.row >> 3) * pre_stride + (d->bmi.mv.as_mv.col >>
[all...]
H A Dpostproc.c139 int col; local
149 for (col = 0; col < cols; col++)
151 unsigned char p_above2 = p_src[col - 2 * src_pixels_per_line];
152 unsigned char p_above1 = p_src[col - src_pixels_per_line];
153 unsigned char p_below1 = p_src[col + src_pixels_per_line];
154 unsigned char p_below2 = p_src[col + 2 * src_pixels_per_line];
156 v = p_src[col];
158 if ((abs(v - p_above2) < f[col])
[all...]
H A Ddebugmodes.c119 fprintf(mvs, "%5d:%-5d", mi[mb_index].mbmi.mv.as_mv.row / 2, mi[mb_index].mbmi.mv.as_mv.col / 2);
146 fprintf(mvs, "%3d:%-3d ", mi[mb_index].bmi[bindex].mv.as_mv.row, mi[mb_index].bmi[bindex].mv.as_mv.col);
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/
H A Dvp9_mv.h24 int16_t col; member in struct:mv
34 int32_t col; member in struct:mv32
39 mv->col = clamp(mv->col, min_col, max_col);
H A Dvp9_tile_common.h25 // initializes 'tile->mi_(row|col)_(start|end)' for (row, col) based on
28 int row, int col);
H A Dvp9_tile_common.c24 void vp9_tile_init(TileInfo *tile, const VP9_COMMON *cm, int row, int col) { argument
27 tile->mi_col_start = get_tile_offset(col, cm->mi_cols, cm->log2_tile_cols);
28 tile->mi_col_end = get_tile_offset(col + 1, cm->mi_cols, cm->log2_tile_cols);
H A Dvp9_mvref_common.c18 int col; member in struct:position
143 mv.as_mv.col *= -1;
184 mi_col + mi_pos->col < tile->mi_col_start ||
186 mi_col + mi_pos->col >= tile->mi_col_end);
218 const MODE_INFO *const candidate_mi = xd->mi[mv_ref->col + mv_ref->row *
226 ADD_MV_REF_LIST(get_sub_block_mv(candidate_mi, 0, mv_ref->col, block));
228 ADD_MV_REF_LIST(get_sub_block_mv(candidate_mi, 1, mv_ref->col, block));
238 const MB_MODE_INFO *const candidate = &xd->mi[mv_ref->col + mv_ref->row *
264 const MB_MODE_INFO *const candidate = &xd->mi[mv_ref->col + mv_ref->row
300 if (mv->col
[all...]
H A Dvp9_postproc.c143 int col; local
155 for (col = 0; col < cols; col++) {
157 int v = p_src[col];
160 if (abs(v - p_src[col + i * pitch]) > flimit)
163 kernel += kernel5[2 + i] * p_src[col + i * pitch];
168 p_dst[col] = v;
178 for (col = 0; col < col
[all...]
H A Dvp9_reconinter.c89 is_q4 ? src_mv->col : src_mv->col * 2 };
91 const int subpel_x = mv.col & SUBPEL_MASK;
94 src += (mv.row >> SUBPEL_BITS) * src_stride + (mv.col >> SUBPEL_BITS);
109 round_mv_comp_q4(mi->bmi[0].as_mv[idx].as_mv.col +
110 mi->bmi[1].as_mv[idx].as_mv.col +
111 mi->bmi[2].as_mv[idx].as_mv.col +
112 mi->bmi[3].as_mv[idx].as_mv.col) };
128 src_mv->col * (1 << (1 - ss_x))
188 scaled_mv.col
[all...]
H A Dvp9_entropymv.h100 return mv->col == 0 ? MV_JOINT_ZERO : MV_JOINT_HNZVZ;
102 return mv->col == 0 ? MV_JOINT_HZVNZ : MV_JOINT_HNZVNZ;
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/decoder/
H A Derror_concealment.c29 int col; member in struct:ec_position
139 int row, col; local
159 for (col = 0; col < end_col; ++col)
165 (((first_blk_col + col) *
167 assign_overlap(b_ol_ul[row * 4 + col].overlaps, bmi, overlap);
178 int row, col, rel_row, rel_col; local
186 col = (4 * b_col) << 3; /* Q3 */
190 new_col = col
288 int row, col; local
501 int row, col, i; local
[all...]
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/
H A Dmcomp.c35 return ((mvcost[0][(mv->as_mv.row - ref->as_mv.row) >> 1] + mvcost[1][(mv->as_mv.col - ref->as_mv.col) >> 1]) * Weight) >> 7;
43 mvcost[1][(mv->as_mv.col - ref->as_mv.col) >> 1])
54 mvsadcost[1][(mv->as_mv.col - ref->as_mv.col)])
67 x->ss[search_site_count].mv.col = 0;
76 x->ss[search_site_count].mv.col = 0;
82 x->ss[search_site_count].mv.col = 0;
88 x->ss[search_site_count].mv.col
[all...]
H A Dlookahead.c112 int row, col, active_end; local
130 col = 0;
135 for (; col < mb_cols; ++col)
137 if (active_map[col])
142 if (col == mb_cols)
146 active_end = col;
157 col << 4, 16,
158 (active_end - col) << 4);
161 col
[all...]
H A Dpickinter.c60 bestmv->as_mv.col <<= 3;
78 int xoffset = this_mv.as_mv.col & 7;
81 in_what += (this_mv.as_mv.row >> 3) * pre_stride + (this_mv.as_mv.col >> 3);
403 x->MVcount[1][mv_max+((xd->mode_info_context->mbmi.mv.as_mv.col -
404 best_ref_mv->as_mv.col) >> 1)]++;
453 (*parent_ref_mv).as_mv.col = store_mode_info[parent_mb_index].mv.as_mv.col
541 if( abs(mv_l.as_mv.row) < 8 && abs(mv_l.as_mv.col) < 8)
549 if( abs(mv_al.as_mv.row) < 8 && abs(mv_al.as_mv.col) < 8)
557 if( abs(mv_a.as_mv.row) < 8 && abs(mv_a.as_mv.col) <
[all...]
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
H A Dvp9_lookahead.c97 int row, col, active_end; local
117 col = 0;
121 for (; col < mb_cols; ++col) {
122 if (active_map[col])
127 if (col == mb_cols)
131 active_end = col;
141 col << 4, 16,
142 (active_end - col) << 4);
145 col
[all...]
H A Dvp9_mcomp.c28 return &buf->buf[mv->row * buf->stride + mv->col];
32 int col_min = (mv->col >> 3) - MAX_FULL_PEL_VAL + (mv->col & 7 ? 1 : 0);
34 int col_max = (mv->col >> 3) + MAX_FULL_PEL_VAL;
71 comp_cost[0][mv->row] + comp_cost[1][mv->col];
77 mv->col - ref->col };
86 mv->col - ref->col };
98 mv->col
465 check_bounds(const MACROBLOCK *x, int row, int col, int range) argument
[all...]
H A Dvp9_encodemv.c206 mv->col - ref->col};
215 encode_mv_component(w, diff.col, &mvctx->comps[1], usehp);
220 unsigned int maxv = MAX(abs(mv->row), abs(mv->col)) >> 3;
239 mvs[i].as_mv.col - ref->col};
/hardware/ti/omap4-aah/camera/
H A DNV12_resize.cpp49 mmUint16 row,col; local
124 for ( col = 0; col < codx; col++ ) {
132 x = (mmUint16) ((mmUint32) (col*resizeFactorX) >> 9);
133 xf = (mmUchar) ((mmUint32) ((col*resizeFactorX) >> 6) & 0x7);
203 for ( col = 0; col < (((codx)>>1)); col++ ) {
214 x = (mmUint16) ((mmUint32) (col*resizeFactor
[all...]
/hardware/ti/omap4xxx/camera/
H A DNV12_resize.c36 mmUint16 row,col; local
122 for (col=0; col < codx; col++)
133 x = (mmUint16) ((mmUint32) (col*resizeFactorX) >> 9);
134 xf = (mmUchar) ((mmUint32) ((col*resizeFactorX) >> 6) & 0x7);
207 for (col=0; col < (((codx)>>1)); col++)
220 x = (mmUint16) ((mmUint32) (col*resizeFactor
[all...]
/hardware/ti/omap4-aah/ion/
H A Dion_test.c67 size_t row, col; local
70 for (col = 0; col < width; col++) {
71 int i = (row * stride) + col;
75 for (col = 0; col < width; col++) {
76 int i = (row * stride) + col;
H A Dion_test_2.c121 size_t row, col; local
124 for (col = 0; col < width; col++) {
125 int i = (row * stride) + col;
129 for (col = 0; col < width; col++) {
130 int i = (row * stride) + col;
/hardware/intel/common/libva/test/
H A Dloadsurface.h29 int row=0, col=0; local
32 for (col=0; col<dst_imgw; col++) {
33 *(dst_img + row * dst_imgw + col) = *(src_img + (row * src_imgh/dst_imgh) * src_imgw + col * src_imgw/dst_imgw);
59 int row, col; local
98 for (col=0; col<width; col
[all...]
/hardware/intel/common/libva/test/videoprocess/
H A Dvideoprocess.cpp215 uint32_t row, col; local
241 for (col = 0; col < surface_image.width / 2; col++) {
242 u_dst[col * 2] = 128;
243 u_dst[col * 2 + 1] = 128;
264 uint32_t frame_size, i, row, col; local
329 for (col = 0; col < surface_image.width / 2; col
366 uint32_t frame_size, row, col; local
[all...]

Completed in 389 milliseconds

123