OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:qindex
(Results
1 - 3
of
3
) sorted by null
/external/libvpx/libvpx/vp9/encoder/
vp9_quantize.c
262
const int
qindex
= vp9_get_qindex(&cpi->common.seg, segment_id,
local
265
int rdmult = vp9_compute_rd_mult(cpi,
qindex
+ cm->y_dc_delta_q);
268
zbin_extra = (cpi->common.y_dequant[
qindex
][1] *
271
x->plane[0].quant = cpi->y_quant[
qindex
];
272
x->plane[0].quant_shift = cpi->y_quant_shift[
qindex
];
273
x->plane[0].zbin = cpi->y_zbin[
qindex
];
274
x->plane[0].round = cpi->y_round[
qindex
];
276
x->e_mbd.plane[0].dequant = cpi->common.y_dequant[
qindex
];
279
zbin_extra = (cpi->common.uv_dequant[
qindex
][1] *
283
x->plane[i].quant = cpi->uv_quant[
qindex
];
314
const int
qindex
= x->q_index;
local
[
all
...]
vp9_onyx_if.c
2788
int
qindex
= cpi->last_boosted_
qindex
;
local
[
all
...]
vp9_rdopt.c
164
int vp9_compute_rd_mult(VP9_COMP *cpi, int
qindex
) {
165
const int q = vp9_dc_quant(
qindex
, 0);
177
static int compute_rd_thresh_factor(int
qindex
) {
180
q = (int)(pow(vp9_dc_quant(
qindex
, 0) / 4.0, RD_THRESH_POW) * 5.12);
186
void vp9_initialize_me_consts(VP9_COMP *cpi, int
qindex
) {
187
cpi->mb.sadperbit16 = sad_per_bit16lut[
qindex
];
188
cpi->mb.sadperbit4 = sad_per_bit4lut[
qindex
];
231
int
qindex
, i;
local
239
qindex
= clamp(cm->base_qindex + cm->y_dc_delta_q, 0, MAXQ);
242
cpi->RDMULT = vp9_compute_rd_mult(cpi,
qindex
);
[
all
...]
Completed in 42 milliseconds