Home | History | Annotate | Download | only in encoder

Lines Matching refs:oxcf

19   const VP9EncoderConfig *const oxcf = &cpi->oxcf;
27 if (svc->number_temporal_layers > 1 && cpi->oxcf.rc_mode == VPX_CBR) {
41 lrc->ni_av_qi = oxcf->worst_allowed_q;
55 if (svc->number_temporal_layers > 1 && cpi->oxcf.rc_mode == VPX_CBR) {
56 lc->target_bandwidth = oxcf->ts_target_bitrate[layer];
57 lrc->last_q[INTER_FRAME] = oxcf->worst_allowed_q;
58 lrc->avg_frame_qindex[INTER_FRAME] = oxcf->worst_allowed_q;
60 lc->target_bandwidth = oxcf->ss_target_bitrate[layer];
61 lrc->last_q[KEY_FRAME] = oxcf->best_allowed_q;
62 lrc->last_q[INTER_FRAME] = oxcf->best_allowed_q;
63 lrc->avg_frame_qindex[KEY_FRAME] = (oxcf->worst_allowed_q +
64 oxcf->best_allowed_q) / 2;
65 lrc->avg_frame_qindex[INTER_FRAME] = (oxcf->worst_allowed_q +
66 oxcf->best_allowed_q) / 2;
67 if (oxcf->ss_play_alternate[layer])
74 lrc->buffer_level = oxcf->starting_buffer_level_ms *
80 if (!(svc->number_temporal_layers > 1 && cpi->oxcf.rc_mode == VPX_CBR)
89 const VP9EncoderConfig *const oxcf = &cpi->oxcf;
95 if (svc->number_temporal_layers > 1 && cpi->oxcf.rc_mode == VPX_CBR) {
105 if (svc->number_temporal_layers > 1 && cpi->oxcf.rc_mode == VPX_CBR) {
106 lc->target_bandwidth = oxcf->ts_target_bitrate[layer];
108 lc->target_bandwidth = oxcf->ss_target_bitrate[layer];
121 if (svc->number_temporal_layers > 1 && cpi->oxcf.rc_mode == VPX_CBR) {
122 lc->framerate = cpi->framerate / oxcf->ts_rate_decimator[layer];
135 return (cpi->svc.number_temporal_layers > 1 && cpi->oxcf.rc_mode == VPX_CBR) ?
142 const VP9EncoderConfig *const oxcf = &cpi->oxcf;
147 lc->framerate = cpi->framerate / oxcf->ts_rate_decimator[layer];
155 cpi->framerate / oxcf->ts_rate_decimator[layer - 1];
156 const int prev_layer_target_bandwidth = oxcf->ts_target_bitrate[layer - 1];
164 const VP9EncoderConfig *const oxcf = &cpi->oxcf;
171 oxcf->two_pass_vbrmin_section / 100);
173 oxcf->two_pass_vbrmax_section) / 100);
184 cpi->oxcf.target_bandwidth = lc->target_bandwidth;
195 const VP9EncoderConfig *const oxcf = &cpi->oxcf;
200 lc->target_bandwidth = (int)oxcf->target_bandwidth;
222 (cpi->svc.number_temporal_layers > 1 && cpi->oxcf.rc_mode == VPX_CBR) ?
287 if (cpi->oxcf.ss_play_alternate[cpi->svc.spatial_layer_id]) {
299 if (cpi->oxcf.ss_play_alternate[cpi->svc.spatial_layer_id - 1] &&
310 get_layer_resolution(cpi->oxcf.width, cpi->oxcf.height,
316 cpi->oxcf.worst_allowed_q = vp9_quantizer_to_qindex(lc->max_q);
317 cpi->oxcf.best_allowed_q = vp9_quantizer_to_qindex(lc->min_q);
319 vp9_change_config(cpi, &cpi->oxcf);