Searched refs:delta_q (Results 1 – 7 of 7) sorted by relevance
/external/libvpx/libvpx/test/ |
D | set_roi.cc | 29 int delta_q[MAX_MB_SEGMENTS] = { -2, -25, 0, 31 }; in TEST() local 68 cpi.common.mb_cols, delta_q, delta_lf, in TEST() 82 const int transq = internalq_trans[abs(delta_q[i])]; in TEST() 146 cpi.common.mb_cols, delta_q, in TEST() 158 cpi.common.mb_cols, delta_q, in TEST() 165 cpi.common.mb_cols, delta_q, in TEST() 170 cpi.common.mb_cols - 1, delta_q, in TEST()
|
/external/libvpx/libvpx/examples/ |
D | vp8_set_maps.txt | 38 roi.delta_q[0] = 0; 39 roi.delta_q[1] = -2; 40 roi.delta_q[2] = -4; 41 roi.delta_q[3] = -6;
|
/external/libvpx/libvpx/vpx/ |
D | vp8cx.h | 207 …int delta_q[4]; /**< quantizer delta [-63, 63] off baseline for regions with id betwe… member
|
/external/libvpx/libvpx/vp8/common/ |
D | onyx.h | 260 …OMP* comp, unsigned char *map, unsigned int rows, unsigned int cols, int delta_q[4], int delta_lf[…
|
/external/libvpx/libvpx/vp8/encoder/ |
D | bitstream.c | 1245 static void put_delta_q(vp8_writer *bc, int delta_q) in put_delta_q() argument 1247 if (delta_q != 0) in put_delta_q() 1250 vp8_write_literal(bc, abs(delta_q), 4); in put_delta_q() 1252 if (delta_q < 0) in put_delta_q()
|
D | onyx_if.c | 5435 …COMP *cpi, unsigned char *map, unsigned int rows, unsigned int cols, int delta_q[4], int delta_lf[… in vp8_set_roimap() 5452 if ( (abs(delta_q[0]) > range) || (abs(delta_q[1]) > range) || in vp8_set_roimap() 5453 (abs(delta_q[2]) > range) || (abs(delta_q[3]) > range) ) in vp8_set_roimap() 5470 ( delta_q[i] >= 0 ) ? q_trans[delta_q[i]] : -q_trans[-delta_q[i]]; in vp8_set_roimap()
|
/external/libvpx/libvpx/vp8/ |
D | vp8_cx_iface.c | 1140 …if (!vp8_set_roimap(ctx->cpi, roi->roi_map, roi->rows, roi->cols, roi->delta_q, roi->delta_lf, roi… in vp8e_set_roi_map()
|