Home
last modified time | relevance | path

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

/external/libvpx/libvpx/test/
Dset_roi.cc30 int delta_q[MAX_MB_SEGMENTS] = { -2, -25, 0, 31 }; in TEST() local
66 delta_q, delta_lf, threshold); in TEST()
79 const int transq = internalq_trans[abs(delta_q[i])]; in TEST()
142 delta_q, rand_deltas, threshold); in TEST()
152 cpi.common.mb_cols, delta_q, delta_lf, threshold); in TEST()
157 cpi.common.mb_cols - 1, delta_q, delta_lf, threshold); in TEST()
Dvp8_datarate_test.cc448 roi_.delta_q[0] = 0; in TEST_P()
449 roi_.delta_q[1] = -20; in TEST_P()
450 roi_.delta_q[2] = 0; in TEST_P()
451 roi_.delta_q[3] = 0; in TEST_P()
Dvp9_datarate_test.cc691 roi_.delta_q[1] = -20; in TEST_P()
/external/libvpx/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()
Dvpx_temporal_svc_encoder.c194 zero(roi->delta_q); in set_roi_map()
195 roi->delta_q[1] = -63; in set_roi_map()
/external/libhevc/common/
Dihevc_deblk_edge_filter.c115 WORD32 delta, delta_p, delta_q; in ihevc_deblk_luma_vert() local
258 delta_q = CLIP3((((pu1_src[2] + pu1_src[0] + 1) >> 1) in ihevc_deblk_luma_vert()
262 tmp_q1 = CLIP_U8(pu1_src[1] + delta_q); in ihevc_deblk_luma_vert()
352 WORD32 delta, delta_p, delta_q; in ihevc_deblk_luma_horz() local
517 delta_q = CLIP3((((pu1_src[2 * src_strd] + in ihevc_deblk_luma_horz()
522 tmp_q1 = CLIP_U8(pu1_src[1 * src_strd] + delta_q); in ihevc_deblk_luma_horz()
Dihevc_hbd_deblk_edge_filter.c122 WORD32 delta, delta_p, delta_q; in ihevc_hbd_deblk_luma_vert() local
264 delta_q = CLIP3((((pu2_src[2] + pu2_src[0] + 1) >> 1) in ihevc_hbd_deblk_luma_vert()
268 tmp_q1 = CLIP3(pu2_src[1] + delta_q, 0, ((1 << bit_depth) - 1)); in ihevc_hbd_deblk_luma_vert()
357 WORD32 delta, delta_p, delta_q; in ihevc_hbd_deblk_luma_horz() local
520 delta_q = CLIP3((((pu2_src[2 * src_strd] + in ihevc_hbd_deblk_luma_horz()
525 tmp_q1 = CLIP3(pu2_src[1 * src_strd] + delta_q, 0, ((1 << bit_depth) - 1)); in ihevc_hbd_deblk_luma_horz()
/external/libvpx/libvpx/vp8/common/
Donyx.h272 unsigned int cols, int delta_q[4], int delta_lf[4],
/external/libvpx/libvpx/vpx/
Dvp8cx.h731 int delta_q[8]; /**< Quantizer deltas. */ member
/external/libvpx/libvpx/vp8/encoder/
Dbitstream.c991 static void put_delta_q(vp8_writer *bc, int delta_q) { in put_delta_q() argument
992 if (delta_q != 0) { in put_delta_q()
994 vp8_write_literal(bc, abs(delta_q), 4); in put_delta_q()
996 if (delta_q < 0) in put_delta_q()
Donyx_if.c5289 unsigned int cols, int delta_q[4], int delta_lf[4], in vp8_set_roimap()
5303 if ((abs(delta_q[0]) > range) || (abs(delta_q[1]) > range) || in vp8_set_roimap()
5304 (abs(delta_q[2]) > range) || (abs(delta_q[3]) > range)) { in vp8_set_roimap()
5315 if (!map || (delta_q[0] == 0 && delta_q[1] == 0 && delta_q[2] == 0 && in vp8_set_roimap()
5316 delta_q[3] == 0 && delta_lf[0] == 0 && delta_lf[1] == 0 && in vp8_set_roimap()
5326 (delta_q[i] >= 0) ? q_trans[delta_q[i]] : -q_trans[-delta_q[i]]; in vp8_set_roimap()
/external/libaom/libaom/aom/
Daomcx.h1129 int delta_q[AOM_MAX_SEGMENTS]; /**< Quantizer deltas. */ member
/external/libvpx/libvpx/vp9/encoder/
Dvp9_bitstream.c736 static void write_delta_q(struct vpx_write_bit_buffer *wb, int delta_q) { in write_delta_q() argument
737 if (delta_q != 0) { in write_delta_q()
739 vpx_wb_write_literal(wb, abs(delta_q), 4); in write_delta_q()
740 vpx_wb_write_bit(wb, delta_q < 0); in write_delta_q()
Dvp9_encoder.c561 const int *delta_q = roi->delta_q; in apply_roi_map() local
586 internal_delta_q[i] = vp9_quantizer_to_qindex(abs(delta_q[i])); in apply_roi_map()
587 if (delta_q[i] < 0) internal_delta_q[i] = -internal_delta_q[i]; in apply_roi_map()
669 unsigned int cols, int delta_q[8], int delta_lf[8], in vp9_set_roi_map()
684 if (!check_seg_range(delta_q, range) || !check_seg_range(delta_lf, range) || in vp9_set_roi_map()
691 (!(delta_q[0] | delta_q[1] | delta_q[2] | delta_q[3] | delta_q[4] | in vp9_set_roi_map()
692 delta_q[5] | delta_q[6] | delta_q[7] | delta_lf[0] | delta_lf[1] | in vp9_set_roi_map()
712 memcpy(&roi->delta_q, delta_q, MAX_SEGMENTS * sizeof(delta_q[0])); in vp9_set_roi_map()
Dvp9_encoder.h1086 unsigned int cols, int delta_q[8], int delta_lf[8],
/external/libaom/libaom/av1/encoder/
Dencoder.h474 unsigned int delta_q[DELTA_Q_PROBS][2]; member
Dbitstream.c1993 static void write_delta_q(struct aom_write_bit_buffer *wb, int delta_q) { in write_delta_q() argument
1994 if (delta_q != 0) { in write_delta_q()
1996 aom_wb_write_inv_signed_literal(wb, delta_q, 6); in write_delta_q()
Dencodeframe.c954 td->counts->delta_q[i][1]++; in update_stats()
956 if (absdq < DELTA_Q_SMALL) td->counts->delta_q[absdq][0]++; in update_stats()
/external/libvpx/libvpx/vp8/
Dvp8_cx_iface.c1124 roi->delta_q, roi->delta_lf, roi->static_threshold)) { in vp8e_set_roi_map()
/external/libvpx/libvpx/vp9/
Dvp9_cx_iface.c1374 roi->delta_q, roi->delta_lf, roi->skip, in ctrl_set_roi_map()