Lines Matching refs:cfg
50 MppEncCfgSet *cfg; member
92 static void init_h264e_cfg_set(MppEncCfgSet *cfg, MppClientType type) in init_h264e_cfg_set() argument
94 MppEncRcCfg *rc_cfg = &cfg->rc; in init_h264e_cfg_set()
95 MppEncPrepCfg *prep = &cfg->prep; in init_h264e_cfg_set()
96 MppEncH264Cfg *h264 = &cfg->h264; in init_h264e_cfg_set()
108 cfg->tune.scene_mode = MPP_ENC_SCENE_MODE_DEFAULT; in init_h264e_cfg_set()
109 cfg->tune.deblur_en = 0; in init_h264e_cfg_set()
110 cfg->tune.vmaf_opt = 0; in init_h264e_cfg_set()
197 cfg->tune.lambda_idx_i = 6; in init_h264e_cfg_set()
198 cfg->tune.lambda_idx_p = 6; in init_h264e_cfg_set()
199 cfg->tune.atl_str = 1; in init_h264e_cfg_set()
200 cfg->tune.atr_str_i = 1; in init_h264e_cfg_set()
201 cfg->tune.atr_str_p = 1; in init_h264e_cfg_set()
202 cfg->tune.anti_flicker_str = 1; in init_h264e_cfg_set()
203 cfg->tune.deblur_str = 3; in init_h264e_cfg_set()
206 cfg->tune.bg_delta_qp_i = -10; in init_h264e_cfg_set()
207 cfg->tune.bg_delta_qp_p = -10; in init_h264e_cfg_set()
208 cfg->tune.fg_delta_qp_i = 3; in init_h264e_cfg_set()
209 cfg->tune.fg_delta_qp_p = 1; in init_h264e_cfg_set()
210 cfg->tune.bmap_qpmin_i = 30; in init_h264e_cfg_set()
211 cfg->tune.bmap_qpmin_p = 30; in init_h264e_cfg_set()
212 cfg->tune.bmap_qpmax_i = 45; in init_h264e_cfg_set()
213 cfg->tune.bmap_qpmax_p = 47; in init_h264e_cfg_set()
214 cfg->tune.min_bg_fqp = 30; in init_h264e_cfg_set()
215 cfg->tune.max_bg_fqp = 45; in init_h264e_cfg_set()
216 cfg->tune.min_fg_fqp = 25; in init_h264e_cfg_set()
217 cfg->tune.max_fg_fqp = 35; in init_h264e_cfg_set()
243 p->cfg = ctrl_cfg->cfg; in h264e_init()
253 init_h264e_cfg_set(p->cfg, p->type); in h264e_init()
276 static void h264e_check_cfg(MppEncCfgSet *cfg) in h264e_check_cfg() argument
278 MppEncRcCfg *rc = &cfg->rc; in h264e_check_cfg()
279 MppEncH264Cfg *h264 = &cfg->h264; in h264e_check_cfg()
294 MppEncCfgSet *cfg = p->cfg; in h264e_proc_cfg() local
300 h264e_check_cfg(cfg); in h264e_proc_cfg()
323 h264e_sps_update(&p->sps, p->cfg); in h264e_gen_hdr()
324 h264e_pps_update(&p->pps, p->cfg); in h264e_gen_hdr()
330 h264e_dpb_setup(&p->dpb, p->cfg, &p->sps); in h264e_gen_hdr()
334 h264e_sps_to_packet(&p->sps, p->hdr_pkt, &p->sps_offset, &p->sps_len, p->cfg); in h264e_gen_hdr()
398 MppEncH264Cfg *h264 = &p->cfg->h264; in h264e_start()
464 h264e_slice_update(&p->slice, p->cfg, &p->sps, &p->pps, dpb->curr); in h264e_proc_dpb()
498 MppEncH264Cfg *h264 = &p->cfg->h264; in h264e_proc_hal()
503 h264e_add_syntax(p, H264E_SYN_CFG, p->cfg); in h264e_proc_hal()
512 MppEncCpbInfo *cpb_info = mpp_enc_ref_cfg_get_cpb_info(p->cfg->ref_cfg); in h264e_proc_hal()
561 MppEncH264Cfg *h264 = &p->cfg->h264; in h264e_sw_enc()