Searched refs:log2_tile_rows (Results 1 – 17 of 17) sorted by relevance
/external/libvpx/libvpx/vp9/common/ |
D | vp9_tile_common.c | 25 tile->mi_row_start = get_tile_offset(row, cm->mi_rows, cm->log2_tile_rows); in vp9_tile_set_row() 26 tile->mi_row_end = get_tile_offset(row + 1, cm->mi_rows, cm->log2_tile_rows); in vp9_tile_set_row()
|
D | vp9_onyxc_int.h | 243 int log2_tile_cols, log2_tile_rows; member
|
/external/libaom/libaom/av1/common/ |
D | tile_common.c | 106 size_sb = ALIGN_POWER_OF_TWO(sb_rows, cm->log2_tile_rows); in av1_calculate_tile_rows() 107 size_sb >>= cm->log2_tile_rows; in av1_calculate_tile_rows() 119 cm->log2_tile_rows = tile_log2(1, cm->tile_rows); in av1_calculate_tile_rows()
|
D | onyxc_int.h | 501 int log2_tile_rows; // only valid for uniform tiles member
|
/external/libvpx/libvpx/vp9/encoder/ |
D | vp9_ethread.c | 43 const int tile_rows = 1 << cm->log2_tile_rows; in enc_worker_hook() 440 const int tile_rows = 1 << cm->log2_tile_rows; in vp9_encode_fp_row_mt() 527 const int tile_rows = 1 << cm->log2_tile_rows; in vp9_temporal_filter_row_mt() 600 const int tile_rows = 1 << cm->log2_tile_rows; in vp9_encode_tiles_row_mt()
|
D | vp9_multi_thread.c | 73 const int tile_rows = 1 << cm->log2_tile_rows; in vp9_row_mt_mem_alloc()
|
D | vp9_bitstream.c | 893 vpx_wb_write_bit(wb, cm->log2_tile_rows != 0); in write_tile_info() 894 if (cm->log2_tile_rows != 0) vpx_wb_write_bit(wb, cm->log2_tile_rows != 1); in write_tile_info() 1063 const int tile_rows = 1 << cm->log2_tile_rows; in encode_tiles()
|
D | vp9_temporal_filter.c | 961 const int tile_rows = 1 << cm->log2_tile_rows; in temporal_filter_iterate_c()
|
D | vp9_encodeframe.c | 5542 const int tile_rows = 1 << cm->log2_tile_rows; in vp9_init_tile_data() 5643 const int tile_rows = 1 << cm->log2_tile_rows; in encode_tiles() 5849 const int tile_rows = 1 << cm->log2_tile_rows; in restore_encode_params()
|
D | vp9_firstpass.c | 1390 cm->log2_tile_rows = 0; in vp9_first_pass()
|
D | vp9_encoder.c | 1373 cm->log2_tile_rows = cpi->oxcf.tile_rows; in set_tile_limits() 3632 const int tile_rows = 1 << cm->log2_tile_rows;
|
/external/libvpx/libvpx/test/ |
D | vp9_encoder_parms_get_to_decoder.cc | 128 EXPECT_EQ(encode_parms.tile_rows, common->log2_tile_rows); in HandleDecodeResult()
|
/external/libvpx/libvpx/vp9/decoder/ |
D | vp9_decodeframe.c | 1635 cm->log2_tile_rows = vpx_rb_read_bit(rb); in setup_tile_info() 1636 if (cm->log2_tile_rows) cm->log2_tile_rows += vpx_rb_read_bit(rb); in setup_tile_info() 1697 const int tile_rows = 1 << cm->log2_tile_rows; in decode_tiles() 1894 assert(cm->log2_tile_rows == 0); in tile_worker_hook() 1963 const int tile_rows = 1 << cm->log2_tile_rows; in decode_tiles_mt() 2496 const int tile_rows = 1 << cm->log2_tile_rows; in vp9_decode_frame()
|
/external/libaom/libaom/av1/encoder/ |
D | bitstream.c | 2118 ones = cm->log2_tile_rows - cm->min_log2_tile_rows; in write_tile_info_max_tile() 2122 if (cm->log2_tile_rows < cm->max_log2_tile_rows) { in write_tile_info_max_tile() 2155 aom_wb_write_literal(wb, 0, cm->log2_tile_cols + cm->log2_tile_rows); in write_tile_info() 3420 const int n_log2_tiles = cm->log2_tile_rows + cm->log2_tile_cols; in write_tiles_in_tg_obus() 3702 cm->log2_tile_cols + cm->log2_tile_rows); in write_tiles_in_tg_obus()
|
D | encoder.c | 910 cm->log2_tile_rows = AOMMAX(cpi->oxcf.tile_rows, cm->min_log2_tile_rows); in set_tile_info() 911 cm->log2_tile_rows = AOMMIN(cm->log2_tile_rows, cm->max_log2_tile_rows); in set_tile_info()
|
/external/libaom/libaom/av1/decoder/ |
D | obu.c | 318 int tile_bits = cm->log2_tile_rows + cm->log2_tile_cols; in read_tile_group_header()
|
D | decodeframe.c | 2554 cm->log2_tile_rows = cm->min_log2_tile_rows; in read_tile_info_max_tile() 2555 while (cm->log2_tile_rows < cm->max_log2_tile_rows) { in read_tile_info_max_tile() 2559 cm->log2_tile_rows++; in read_tile_info_max_tile() 2609 aom_rb_read_literal(rb, cm->log2_tile_rows + cm->log2_tile_cols); in read_tile_info()
|