Home
last modified time | relevance | path

Searched refs:delta_q (Results 1 – 11 of 11) sorted by relevance

/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/test/
Dset_roi.cc31 int delta_q[MAX_MB_SEGMENTS] = { -2, -25, 0, 31 }; in TEST() local
70 cpi.common.mb_cols, delta_q, delta_lf, in TEST()
84 const int transq = internalq_trans[abs(delta_q[i])]; in TEST()
148 cpi.common.mb_cols, delta_q, in TEST()
160 cpi.common.mb_cols, delta_q, in TEST()
167 cpi.common.mb_cols, delta_q, in TEST()
172 cpi.common.mb_cols - 1, delta_q, in TEST()
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/examples/
Dset_maps.c72 roi.delta_q[0] = 0; in set_roi_map()
73 roi.delta_q[1] = -2; in set_roi_map()
74 roi.delta_q[2] = -4; in set_roi_map()
75 roi.delta_q[3] = -6; in set_roi_map()
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vpx/
Dvp8cx.h233 int delta_q[4]; /**< Quantizer deltas. */ member
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/common/
Donyx.h261 …OMP* comp, unsigned char *map, unsigned int rows, unsigned int cols, int delta_q[4], int delta_lf[…
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
Dvp9_bitstream.c723 static void write_delta_q(struct vp9_write_bit_buffer *wb, int delta_q) { in write_delta_q() argument
724 if (delta_q != 0) { in write_delta_q()
726 vp9_wb_write_literal(wb, abs(delta_q), 4); in write_delta_q()
727 vp9_wb_write_bit(wb, delta_q < 0); in write_delta_q()
Dvp9_onyx_int.h557 int delta_q[MAX_SEGMENTS],
Dvp9_onyx_if.c3350 unsigned int cols, int delta_q[MAX_SEGMENTS],
3373 feature_data[SEG_LVL_ALT_Q][i] = delta_q[i];
3380 if (delta_q[i])
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/
Dbitstream.c1251 static void put_delta_q(vp8_writer *bc, int delta_q) in put_delta_q() argument
1253 if (delta_q != 0) in put_delta_q()
1256 vp8_write_literal(bc, abs(delta_q), 4); in put_delta_q()
1258 if (delta_q < 0) in put_delta_q()
Donyx_if.c5472 …COMP *cpi, unsigned char *map, unsigned int rows, unsigned int cols, int delta_q[4], int delta_lf[… in vp8_set_roimap()
5489 if ( (abs(delta_q[0]) > range) || (abs(delta_q[1]) > range) || in vp8_set_roimap()
5490 (abs(delta_q[2]) > range) || (abs(delta_q[3]) > range) ) in vp8_set_roimap()
5507 ( delta_q[i] >= 0 ) ? q_trans[delta_q[i]] : -q_trans[-delta_q[i]]; in vp8_set_roimap()
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/decoder/
Dvp9_decodeframe.c568 static int read_delta_q(struct vp9_read_bit_buffer *rb, int *delta_q) { in read_delta_q() argument
569 const int old = *delta_q; in read_delta_q()
570 *delta_q = vp9_rb_read_bit(rb) ? vp9_rb_read_signed_literal(rb, 4) : 0; in read_delta_q()
571 return old != *delta_q; in read_delta_q()
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/
Dvp8_cx_iface.c1136 …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()