Searched defs:cols (Results 1 - 9 of 9) sorted by relevance

/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/common/
H A Ddebugmodes.c16 void vp8_print_modes_and_motion_vectors(MODE_INFO *mi, int rows, int cols, int frame) argument
30 for (mb_col = 0; mb_col < cols; mb_col++)
49 for (mb_col = 0; mb_col < cols; mb_col++)
69 for (mb_col = 0; mb_col < cols; mb_col++)
94 for (b_col = 0; b_col < 4 * cols; b_col++)
96 mb_index = (b_row >> 2) * (cols + 1) + (b_col >> 2);
117 for (mb_col = 0; mb_col < cols; mb_col++)
142 for (b_col = 0; b_col < 4 * cols; b_col++)
144 mb_index = (b_row >> 2) * (cols + 1) + (b_col >> 2);
H A Dpostproc.c132 int cols,
149 for (col = 0; col < cols; col++)
176 p_src[cols] = p_src[cols + 1] = p_src[cols - 1];
178 for (col = 0; col < cols; col++)
217 void vp8_mbpost_proc_across_ip_c(unsigned char *src, int pitch, int rows, int cols, int flimit) argument
235 for (i = cols; i<cols+17; i++)
236 s[i]=s[cols
126 vp8_post_proc_down_and_across_mb_row_c( unsigned char *src_ptr, unsigned char *dst_ptr, int src_pixels_per_line, int dst_pixels_per_line, int cols, unsigned char *f, int size ) argument
268 vp8_mbpost_proc_down_c(unsigned char *dst, int pitch, int rows, int cols, int flimit) argument
[all...]
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/
H A Dvp9_debugmodes.c32 int cols = cm->mi_cols; local
39 for (mi_col = 0; mi_col < cols; mi_col++) {
57 int cols = cm->mi_cols; local
69 for (mi_col = 0; mi_col < cols; mi_col++) {
H A Dvp9_idct.h90 transform_1d cols, rows; // vertical and horizontal member in struct:__anon1123
H A Dvp9_postproc.c138 int cols,
155 for (col = 0; col < cols; col++) {
178 for (col = 0; col < cols; col++) {
217 int rows, int cols, int flimit) {
234 for (c = 0; c < cols + 8; c++) {
255 int rows, int cols, int flimit) {
259 for (c = 0; c < cols; c++) {
133 vp9_post_proc_down_and_across_c(const uint8_t *src_ptr, uint8_t *dst_ptr, int src_pixels_per_line, int dst_pixels_per_line, int rows, int cols, int flimit) argument
216 vp9_mbpost_proc_across_ip_c(uint8_t *src, int pitch, int rows, int cols, int flimit) argument
254 vp9_mbpost_proc_down_c(uint8_t *dst, int pitch, int rows, int cols, int flimit) argument
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
H A Dvp9_encodemb.c38 void vp9_subtract_block_c(int rows, int cols, argument
45 for (c = 0; c < cols; c++)
H A Dvp9_onyx_if.c1641 unsigned int cols, unsigned int rows) {
1647 for (col = 0; col + 16 <= cols; col += 16) {
1655 if (col < cols) {
1661 for (border_col = col; border_col < cols; border_col++) {
1677 for (col = 0; col < cols; col++) {
3350 unsigned int cols, int delta_q[MAX_SEGMENTS],
3357 if (cpi->common.mb_rows != rows || cpi->common.mb_cols != cols)
3399 unsigned int rows, unsigned int cols) {
3400 if (rows == cpi->common.mb_rows && cols == cpi->common.mb_cols) {
3402 vpx_memcpy(cpi->active_map, map, rows * cols);
1639 calc_plane_error(const uint8_t *orig, int orig_stride, const uint8_t *recon, int recon_stride, unsigned int cols, unsigned int rows) argument
3349 vp9_set_roimap(VP9_COMP *cpi, unsigned char *map, unsigned int rows, unsigned int cols, int delta_q[MAX_SEGMENTS], int delta_lf[MAX_SEGMENTS], unsigned int threshold[MAX_SEGMENTS]) argument
3398 vp9_set_active_map(VP9_COMP *cpi, unsigned char *map, unsigned int rows, unsigned int cols) argument
[all...]
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vpx/
H A Dvp8cx.h229 unsigned int cols; /**< Number of columns. */ member in struct:vpx_roi_map
249 unsigned int cols; /**< number of cols */ member in struct:vpx_active_map
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/
H A Donyx_if.c2430 unsigned int cols, unsigned int rows)
2438 for (col = 0; col + 16 <= cols; col += 16)
2449 if (col < cols)
2457 for (border_col = col; border_col < cols; border_col++)
2475 for (col = 0; col < cols; col++)
5472 int vp8_set_roimap(VP8_COMP *cpi, unsigned char *map, unsigned int rows, unsigned int cols, int delta_q[4], int delta_lf[4], unsigned int threshold[4]) argument
5484 if (cpi->common.mb_rows != (int)rows || cpi->common.mb_cols != (int)cols)
5538 int vp8_set_active_map(VP8_COMP *cpi, unsigned char *map, unsigned int rows, unsigned int cols) argument
5540 if ((int)rows == cpi->common.mb_rows && (int)cols == cpi->common.mb_cols)
5544 vpx_memcpy(cpi->active_map, map, rows * cols);
2428 calc_plane_error(unsigned char *orig, int orig_stride, unsigned char *recon, int recon_stride, unsigned int cols, unsigned int rows) argument
[all...]

Completed in 83 milliseconds