Home
last modified time | relevance | path

Searched refs:u4_ht (Results 1 – 14 of 14) sorted by relevance

/external/libavc/test/encoder/
Drecon.c182 ps_raw_buf->au4_ht[0] = ps_app_ctxt->u4_ht; in init_raw_buf_descr()
190 ps_raw_buf->au4_ht[1] = ps_app_ctxt->u4_ht / 2; in init_raw_buf_descr()
202 ps_raw_buf->au4_ht[1] = ps_app_ctxt->u4_ht / 2; in init_raw_buf_descr()
203 ps_raw_buf->au4_ht[2] = ps_app_ctxt->u4_ht / 2; in init_raw_buf_descr()
Dmain.c579 sscanf(value, "%d", &ps_app_ctxt->u4_ht); in parse_argument()
896 if(0 >= (WORD32)ps_app_ctxt->u4_ht) in validate_params()
898 sprintf(ac_error, "Invalid height: %d", ps_app_ctxt->u4_ht); in validate_params()
964 ps_app_ctxt->u4_ht = DEFAULT_HT; in init_default_params()
1024 s_frame_dimensions_ip.s_ive_ip.u4_ht = ps_app_ctxt->u4_ht; in set_dimensions()
1946 pu1_buf += ps_app_ctxt->u4_strd * ps_app_ctxt->u4_ht; in synchronous_encode()
1952 ps_inp_raw_buf->au4_ht[0] = ps_app_ctxt->u4_ht; in synchronous_encode()
1953 ps_inp_raw_buf->au4_ht[1] = ps_app_ctxt->u4_ht / 2; in synchronous_encode()
1962 pu1_buf += (ps_app_ctxt->u4_wd) * ps_app_ctxt->u4_ht; in synchronous_encode()
1964 pu1_buf += (ps_app_ctxt->u4_wd >> 1) * (ps_app_ctxt->u4_ht >> 1); in synchronous_encode()
[all …]
Dinput.c87 num_mbs = ALIGN16(ps_app_ctxt->u4_wd) * ALIGN16(ps_app_ctxt->u4_ht); in read_mb_info()
246 luma_size = ps_app_ctxt->u4_wd * ps_app_ctxt->u4_ht; in allocate_input()
Dapp.h271 UWORD32 u4_ht; member
/external/libavc/decoder/
Dih264d_mem_request.h78 UWORD32 u4_ht);
/external/libhevc/encoder/
Dihevce_stasino_helpers.c860 UWORD32 u4_wd, u4_ht; in ihevce_calc_variance_for_diff_weights() local
877 u4_ht = ps_result[i4_k].pu.b4_ht + 1; in ihevce_calc_variance_for_diff_weights()
878 u1_num_base_blks = u4_wd * u4_ht; in ihevce_calc_variance_for_diff_weights()
/external/libavc/encoder/
Dih264e_api.c169 UWORD32 u4_wd, u4_ht; in api_check_input_dimensions() local
174 u4_ht = ps_inp_buf->au4_ht[0]; in api_check_input_dimensions()
226 if (u4_ht != ps_curr_cfg->u4_disp_ht) in api_check_input_dimensions()
1237 if (ps_ip->s_ive_ip.u4_ht < MIN_HT) in api_check_struct_sanity()
1246 if (ps_ip->s_ive_ip.u4_ht > ps_codec->s_cfg.u4_max_ht) in api_check_struct_sanity()
1264 if(ps_ip->s_ive_ip.u4_ht & 1) in api_check_struct_sanity()
2367 UWORD32 ht_aln = ALIGN16(ps_cfg->u4_ht); in ih264e_codec_update_config()
2369 if (ps_curr_cfg->u4_wd != wd_aln || ps_curr_cfg->u4_ht != ht_aln in ih264e_codec_update_config()
2374 ps_curr_cfg->u4_ht = ht_aln; in ih264e_codec_update_config()
2380 ps_curr_cfg->i4_ht_mbs = ps_curr_cfg->u4_ht >> 4; in ih264e_codec_update_config()
[all …]
Dive2.h863 UWORD32 u4_ht; member
Dih264e_utils.c814 * (ps_codec->s_cfg.u4_ht + PAD_HT); in ih264e_pic_buf_mgr_add_bufs()
893 * ALIGN16(ps_codec->s_cfg.u4_ht); in ih264e_mv_buf_mgr_add_bufs()
Dih264e_structs.h424 UWORD32 u4_ht; member
Dih264e_encode_header.c1262 ps_sps->i2_frame_crop_bottom_offset = (ps_codec->s_cfg.u4_ht - ps_codec->s_cfg.u4_disp_ht)>>1; in ih264e_populate_sps()
Dih264e_process.c1244 UWORD32 u4_pad_bottom_sz = ps_codec->s_cfg.u4_ht - ps_codec->s_cfg.u4_disp_ht; in ih264e_init_proc_ctxt()
/external/libavc/fuzzer/
DREADME.md80 2. Frame Height (parameter name: `u4_ht`)
121 | `u4_ht` | In the range `0 to 10239` | All the bits of 3rd and 4th byte of data |
Davc_enc_fuzzer.cpp361 sDimensionsIp.u4_ht = mHeight; in setDimensions()