Searched refs:log2_tile_cols (Results 1 – 17 of 17) sorted by relevance
/external/libvpx/libvpx/vp9/encoder/ |
D | vp9_ethread.c | 42 const int tile_cols = 1 << cm->log2_tile_cols; in enc_worker_hook() 63 int log2_tile_cols; in get_max_tile_cols() local 66 log2_tile_cols = in get_max_tile_cols() 71 if (log2_tile_cols > level_tile_cols) { in get_max_tile_cols() 72 log2_tile_cols = VPXMAX(level_tile_cols, min_log2_tile_cols); in get_max_tile_cols() 75 return (1 << log2_tile_cols); in get_max_tile_cols() 174 const int tile_cols = 1 << cm->log2_tile_cols; in vp9_encode_tiles_mt() 398 const int tile_cols = 1 << cm->log2_tile_cols; in first_pass_worker_hook() 439 const int tile_cols = 1 << cm->log2_tile_cols; in vp9_encode_fp_row_mt() 489 const int tile_cols = 1 << cm->log2_tile_cols; in temporal_filter_worker_hook() [all …]
|
D | vp9_multi_thread.c | 72 const int tile_cols = 1 << cm->log2_tile_cols; in vp9_row_mt_mem_alloc() 174 const int tile_cols = 1 << cm->log2_tile_cols; in vp9_multi_thread_tile_init() 233 const int tile_cols = 1 << cm->log2_tile_cols; in vp9_prepare_job_queue()
|
D | vp9_bitstream.c | 892 ones = cm->log2_tile_cols - min_log2_tile_cols; in write_tile_info() 895 if (cm->log2_tile_cols < max_log2_tile_cols) vpx_wb_write_bit(wb, 0); in write_tile_info() 986 const int tile_cols = 1 << cm->log2_tile_cols; in encode_tiles_mt() 1067 const int tile_cols = 1 << cm->log2_tile_cols; in encode_tiles()
|
D | vp9_segmentation.c | 265 for (tile_col = 0; tile_col < 1 << cm->log2_tile_cols; tile_col++) { in vp9_choose_segmap_coding_method()
|
D | vp9_temporal_filter.c | 1001 const int tile_cols = 1 << cm->log2_tile_cols; in temporal_filter_iterate_tile_c() 1018 const int tile_cols = 1 << cm->log2_tile_cols; in temporal_filter_iterate_c()
|
D | vp9_encoder.h | 989 const int tile_cols = 1 << cm->log2_tile_cols; in get_start_tok()
|
D | vp9_encodeframe.c | 5724 const int tile_cols = 1 << cm->log2_tile_cols; in vp9_init_tile_data() 5782 const int tile_cols = 1 << cm->log2_tile_cols; in vp9_encode_sb_row() 5814 const int tile_cols = 1 << cm->log2_tile_cols; in vp9_encode_tile() 5827 const int tile_cols = 1 << cm->log2_tile_cols; in encode_tiles() 6070 if (VPXMIN(cpi->oxcf.max_threads, 1 << cm->log2_tile_cols) > 1) in encode_frame_internal() 6137 const int tile_cols = 1 << cm->log2_tile_cols; in restore_encode_params()
|
D | vp9_encoder.c | 1418 cm->log2_tile_cols = in set_tile_limits() 1425 if (cm->log2_tile_cols > level_tile_cols) { in set_tile_limits() 1426 cm->log2_tile_cols = VPXMAX(level_tile_cols, min_log2_tile_cols); in set_tile_limits() 3814 const int tile_cols = 1 << cm->log2_tile_cols; 5678 if (level_spec->max_col_tiles < (1 << cm->log2_tile_cols)) { 5679 level_spec->max_col_tiles = (1 << cm->log2_tile_cols);
|
D | vp9_firstpass.c | 1401 cm->log2_tile_cols = 0; in vp9_first_pass() 1410 cm->log2_tile_cols = 0; in vp9_first_pass()
|
/external/libvpx/libvpx/vp9/common/ |
D | vp9_tile_common.c | 30 tile->mi_col_start = get_tile_offset(col, cm->mi_cols, cm->log2_tile_cols); in vp9_tile_set_col() 31 tile->mi_col_end = get_tile_offset(col + 1, cm->mi_cols, cm->log2_tile_cols); in vp9_tile_set_col()
|
D | vp9_thread_common.c | 165 const int num_tile_cols = 1 << cm->log2_tile_cols; in loop_filter_rows_mt() 397 const int tile_cols = 1 << cm->log2_tile_cols; in get_next_row()
|
D | vp9_onyxc_int.h | 243 int log2_tile_cols, log2_tile_rows; member
|
/external/libwebm/common/ |
D | vp9_header_parser.cc | 243 int log2_tile_cols = min_log2_tile_cols; in ParseTileInfo() local 245 log2_tile_cols++; in ParseTileInfo() 253 column_tiles_ = 1 << log2_tile_cols; in ParseTileInfo()
|
/external/libvpx/libvpx/vp9/decoder/ |
D | vp9_decodeframe.c | 1636 cm->log2_tile_cols = min_log2_tile_cols; in setup_tile_info() 1637 while (max_ones-- && vpx_rb_read_bit(rb)) cm->log2_tile_cols++; in setup_tile_info() 1639 if (cm->log2_tile_cols > 6) in setup_tile_info() 1757 const int all_parse_done = 1 << pbi->common.log2_tile_cols; in vp9_tile_done() 1775 const int tile_cols = 1 << cm->log2_tile_cols; in vp9_jobq_alloc() 1792 const int tile_cols = 1 << cm->log2_tile_cols; in recon_tile_row() 1903 const int tile_cols = 1 << cm->log2_tile_cols; in row_decode_worker_hook() 2020 const int tile_cols = 1 << cm->log2_tile_cols; in decode_tiles() 2187 const int final_col = (1 << pbi->common.log2_tile_cols) - 1; in tile_worker_hook() 2206 1 << cm->log2_tile_cols); in tile_worker_hook() [all …]
|
/external/libvpx/libvpx/test/ |
D | vp9_encoder_parms_get_to_decoder.cc | 127 EXPECT_EQ(encode_parms.tile_cols, common->log2_tile_cols); in HandleDecodeResult()
|
/external/mesa3d/src/gallium/drivers/radeon/ |
D | radeon_vcn_dec.h | 661 unsigned char log2_tile_cols; member
|
D | radeon_vcn_dec.c | 484 result.log2_tile_cols = pic->picture_parameter.log2_tile_columns; in get_vp9_msg()
|