OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:qzbin_factor
(Results
1 - 2
of
2
) sorted by null
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
vp9_quantize.c
160
const int
qzbin_factor
= q == 0 ? 64 : (vp9_dc_quant(q, 0) < 148 ? 84 : 80);
local
168
quants->y_zbin[q][i] = ROUND_POWER_OF_TWO(
qzbin_factor
* quant, 7);
177
quants->uv_zbin[q][i] = ROUND_POWER_OF_TWO(
qzbin_factor
* quant, 7);
186
quants->a_zbin[q][i] = ROUND_POWER_OF_TWO(
qzbin_factor
* quant, 7);
/external/libvpx/libvpx/vp9/encoder/
vp9_quantize.c
257
const int
qzbin_factor
= get_qzbin_factor(q, cm->bit_depth);
local
271
quants->y_zbin[q][i] = ROUND_POWER_OF_TWO(
qzbin_factor
* quant, 7);
282
quants->uv_zbin[q][i] = ROUND_POWER_OF_TWO(
qzbin_factor
* quant, 7);
Completed in 617 milliseconds