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