Searched defs:rows (Results 1 - 11 of 11) 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
28 for (mb_row = 0; mb_row < rows; mb_row++)
47 for (mb_row = 0; mb_row < rows; mb_row++)
67 for (mb_row = 0; mb_row < rows; mb_row++)
89 for (b_row = 0; b_row < 4 * rows; b_row++)
115 for (mb_row = 0; mb_row < rows; mb_row++)
137 for (b_row = 0; b_row < 4 * rows; b_row++)
H A Dpostproc.c217 void vp8_mbpost_proc_across_ip_c(unsigned char *src, int pitch, int rows, int cols, int flimit) argument
224 for (r = 0; r < rows; r++)
268 void vp8_mbpost_proc_down_c(unsigned char *dst, int pitch, int rows, int cols, int flimit) argument
287 for (i = rows; i < rows+17; i++)
288 s[i*pitch]=s[(rows-1)*pitch];
296 for (r = 0; r < rows + 8; r++)
406 /* TODO: The original code don't filter the 2 outer rows and columns. */
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/
H A Dvp9_debugmodes.c31 int rows = cm->mi_rows; local
37 for (mi_row = 0; mi_row < rows; mi_row++) {
56 int rows = cm->mi_rows; local
67 for (mi_row = 0; mi_row < rows; mi_row++) {
H A Dvp9_idct.h90 transform_1d cols, rows; // vertical and horizontal member in struct:__anon1123
H A Dvp9_postproc.c137 int rows,
150 for (row = 0; row < rows; row++) {
217 int rows, int cols, int flimit) {
224 for (r = 0; r < rows; r++) {
255 int rows, int cols, int flimit) {
271 for (r = 0; r < rows + 8; r++) {
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
H A Dvp9_loopfilter.c641 // the bits for the final 32 by 32 block in the 64x64 up 4 rows and left
642 // 4 rows to the appropriate spot.
783 const uint64_t rows = cm->mi_rows - mi_row; local
786 const uint64_t mask_y = (((uint64_t) 1 << (rows << 3)) - 1);
787 const uint16_t mask_uv = (((uint16_t) 1 << (((rows + 1) >> 1) << 2)) - 1);
801 if (rows == 1) {
805 if (rows == 5) {
1056 // Vertical pass: do 2 rows at one time
1120 // Vertical pass: do 2 rows at one time
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/decoder/
H A Dvp9_dthread.c141 // Number of superblock rows and cols
169 // Initialize cur_sb_col to -1 for all SB rows.
200 // Wait till all rows are finished
221 void vp9_loop_filter_alloc(VP9_COMMON *cm, VP9LfSync *lf_sync, int rows, argument
227 vpx_malloc(sizeof(*lf_sync->mutex_) * rows));
228 for (i = 0; i < rows; ++i) {
233 vpx_malloc(sizeof(*lf_sync->cond_) * rows));
234 for (i = 0; i < rows; ++i) {
240 vpx_malloc(sizeof(*lf_sync->cur_sb_col) * rows));
247 void vp9_loop_filter_dealloc(VP9LfSync *lf_sync, int rows) { argument
[all...]
/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
44 for (r = 0; r < rows; r++) {
H A Dvp9_onyx_if.c1641 unsigned int cols, unsigned int rows) {
1646 for (row = 0; row + 16 <= rows; row += 16) {
1676 for (; row < rows; row++) {
3349 int vp9_set_roimap(VP9_COMP *cpi, unsigned char *map, unsigned int rows, argument
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
3398 vp9_set_active_map(VP9_COMP *cpi, unsigned char *map, unsigned int rows, unsigned int cols) argument
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vpx/
H A Dvp8cx.h228 unsigned int rows; /**< Number of rows. */ member in struct:vpx_roi_map
248 unsigned int rows; /**< number of rows */ member in struct:vpx_active_map
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/
H A Donyx_if.c585 /* Cycle through the macro_block rows */
2430 unsigned int cols, unsigned int rows)
2436 for (row = 0; row + 16 <= rows; row += 16)
2473 for (; row < rows; row++)
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
5483 // Check number of rows and columns match
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 * col
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 150 milliseconds