Searched refs:tile_col (Results 1 - 7 of 7) sorted by relevance
/external/libvpx/libvpx/vp9/encoder/ |
H A D | vp9_encodeframe.h | 41 int tile_row, int tile_col);
|
H A D | vp9_segmentation.c | 204 int i, tile_col, mi_row, mi_col; local 221 for (tile_col = 0; tile_col < 1 << cm->log2_tile_cols; tile_col++) { 224 vp9_tile_init(&tile, cm, 0, tile_col);
|
H A D | vp9_ethread.c | 47 int tile_col = t % tile_cols; local 49 vp9_encode_tile(cpi, thread_data->td, tile_row, tile_col);
|
H A D | vp9_bitstream.c | 931 int tile_row, tile_col; local 941 for (tile_col = 0; tile_col < tile_cols; tile_col++) { 942 int tile_idx = tile_row * tile_cols + tile_col; 943 TOKENEXTRA *tok = cpi->tile_tok[tile_row][tile_col]; 945 tok_end = cpi->tile_tok[tile_row][tile_col] + 946 cpi->tok_count[tile_row][tile_col]; 948 if (tile_col < tile_cols - 1 || tile_row < tile_rows - 1) 957 if (tile_col < tile_col [all...] |
H A D | vp9_encodeframe.c | 3786 int tile_col, tile_row; local 3798 for (tile_col = 0; tile_col < tile_cols; ++tile_col) { 3800 &cpi->tile_data[tile_row * tile_cols + tile_col]; 3812 for (tile_col = 0; tile_col < tile_cols; ++tile_col) { 3814 &cpi->tile_data[tile_row * tile_cols + tile_col].tile_info; 3815 vp9_tile_init(tile_info, cm, tile_row, tile_col); 3824 vp9_encode_tile(VP9_COMP *cpi, ThreadData *td, int tile_row, int tile_col) argument 3851 int tile_col, tile_row; local [all...] |
/external/libhevc/decoder/ |
H A D | ihevcd_utils.c | 360 WORD32 tile_row, tile_col; local 372 tile_col = 0; 398 tile_col = i; 427 + tile_col;
|
/external/libvpx/libvpx/vp9/decoder/ |
H A D | vp9_decodeframe.c | 1435 int tile_row, tile_col; local 1485 for (tile_col = 0; tile_col < tile_cols; ++tile_col) { 1486 const TileBuffer *const buf = &tile_buffers[tile_row][tile_col]; 1487 tile_data = pbi->tile_data + tile_cols * tile_row + tile_col; 1494 vp9_tile_init(&tile_data->xd.tile, tile_data->cm, tile_row, tile_col); 1507 for (tile_col = 0; tile_col < tile_cols; ++tile_col) { [all...] |
Completed in 792 milliseconds