OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:QIndex
(Results
1 - 6
of
6
) sorted by null
/external/libvpx/libvpx/vp8/common/
quant_common.c
37
int vp8_dc_quant(int
QIndex
, int Delta) {
40
QIndex
=
QIndex
+ Delta;
42
if (
QIndex
> 127) {
43
QIndex
= 127;
44
} else if (
QIndex
< 0) {
45
QIndex
= 0;
48
retval = dc_qlookup[
QIndex
];
52
int vp8_dc2quant(int
QIndex
, int Delta) {
55
QIndex
= QIndex + Delta
[
all
...]
quant_common.h
22
extern int vp8_ac_yquant(int
QIndex
);
23
extern int vp8_dc_quant(int
QIndex
, int Delta);
24
extern int vp8_dc2quant(int
QIndex
, int Delta);
25
extern int vp8_ac2quant(int
QIndex
, int Delta);
26
extern int vp8_dc_uv_quant(int
QIndex
, int Delta);
27
extern int vp8_ac_uv_quant(int
QIndex
, int Delta);
/external/libvpx/libvpx/vp8/encoder/
vp8_quantize.c
276
((cpi->common.Y1dequant[
QIndex
][1] * \
281
((cpi->common.UVdequant[
QIndex
][1] * \
286
((cpi->common.Y2dequant[
QIndex
][1] * \
292
int
QIndex
;
300
QIndex
= xd->segment_feature_data[MB_LVL_ALT_Q]
304
QIndex
= cpi->common.base_qindex +
308
QIndex
= (
QIndex
>= 0) ? ((
QIndex
<= MAXQ) ?
QIndex
: MAXQ) : 0
[
all
...]
rdopt.h
22
void vp8cx_initialize_me_consts(VP8_COMP *cpi, int
QIndex
);
rdopt.c
158
void vp8cx_initialize_me_consts(VP8_COMP *cpi, int
QIndex
) {
159
cpi->mb.sadperbit16 = sad_per_bit16lut[
QIndex
];
160
cpi->mb.sadperbit4 = sad_per_bit4lut[
QIndex
];
[
all
...]
/external/libvpx/libvpx/vp8/decoder/
decodeframe.c
59
int
QIndex
;
67
QIndex
= xd->segment_feature_data[MB_LVL_ALT_Q][mbmi->segment_id];
71
QIndex
= pc->base_qindex +
75
QIndex
= (
QIndex
>= 0) ? ((
QIndex
<= MAXQ) ?
QIndex
: MAXQ)
78
QIndex
= pc->base_qindex;
83
xd->dequant_y1[0] = pc->Y1dequant[
QIndex
][0];
84
xd->dequant_y2[0] = pc->Y2dequant[
QIndex
][0]
[
all
...]
Completed in 285 milliseconds