Searched refs:tile_col (Results 1 – 4 of 4) sorted by relevance
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/ |
D | vp9_segmentation.c | 222 int i, tile_col, mi_row, mi_col; in vp9_choose_segmap_coding_method() local 242 for (tile_col = 0; tile_col < 1 << cm->log2_tile_cols; tile_col++) { in vp9_choose_segmap_coding_method() 245 vp9_tile_init(&tile, cm, 0, tile_col); in vp9_choose_segmap_coding_method()
|
D | vp9_bitstream.c | 931 int tile_row, tile_col; local 946 for (tile_col = 1; tile_col < tile_cols; tile_col++) 947 tok[tile_row][tile_col] = tok[tile_row][tile_col - 1] + 948 cpi->tok_count[tile_row][tile_col - 1]; 952 for (tile_col = 0; tile_col < tile_cols; tile_col++) { 955 vp9_tile_init(&tile, cm, tile_row, tile_col); 956 tok_end = tok[tile_row][tile_col] + cpi->tok_count[tile_row][tile_col]; 958 if (tile_col < tile_cols - 1 || tile_row < tile_rows - 1) 963 write_modes(cpi, &tile, &residual_bc, &tok[tile_row][tile_col], tok_end); 964 assert(tok[tile_row][tile_col] == tok_end); [all …]
|
D | vp9_encodeframe.c | 3147 int tile_col, tile_row; in encode_frame_internal() local 3153 for (tile_col = 0; tile_col < tile_cols; tile_col++) { in encode_frame_internal() 3158 vp9_tile_init(&tile, cm, tile_row, tile_col); in encode_frame_internal() 3166 cpi->tok_count[tile_row][tile_col] = (unsigned int)(tp - tp_old); in encode_frame_internal()
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/decoder/ |
D | vp9_decodeframe.c | 789 int tile_row, tile_col; in decode_tiles() local 806 for (tile_col = 0; tile_col < tile_cols; ++tile_col) { in decode_tiles() 808 tile_col == tile_cols - 1; in decode_tiles() 810 TileBuffer *const buf = &tile_buffers[tile_row][tile_col]; in decode_tiles() 819 for (tile_col = 0; tile_col < tile_cols; ++tile_col) { in decode_tiles() 820 const int col = pbi->oxcf.inv_tile_order ? tile_cols - tile_col - 1 in decode_tiles() 821 : tile_col; in decode_tiles()
|