HomeSort by relevance Sort by last modified time
    Searched refs:delta_q (Results 1 - 9 of 9) sorted by null

  /external/libvpx/libvpx/test/
set_roi.cc 30 int delta_q[MAX_MB_SEGMENTS] = { -2, -25, 0, 31 }; local
66 delta_q, delta_lf, threshold);
79 const int transq = internalq_trans[abs(delta_q[i])];
82 << "segment delta_q error";
136 // One delta_q error shown at a time
142 delta_q, rand_deltas, threshold);
153 delta_q, delta_lf, threshold);
160 cpi.common.mb_cols, delta_q, delta_lf, threshold);
165 cpi.common.mb_cols - 1, delta_q, delta_lf, threshold);
  /external/libvpx/libvpx/examples/
set_maps.c 72 roi.delta_q[0] = 0;
73 roi.delta_q[1] = -2;
74 roi.delta_q[2] = -4;
75 roi.delta_q[3] = -6;
  /external/libhevc/common/
ihevc_deblk_edge_filter.c 115 WORD32 delta, delta_p, delta_q; local
258 delta_q = CLIP3((((pu1_src[2] + pu1_src[0] + 1) >> 1)
262 tmp_q1 = CLIP_U8(pu1_src[1] + delta_q);
352 WORD32 delta, delta_p, delta_q; local
517 delta_q = CLIP3((((pu1_src[2 * src_strd] +
522 tmp_q1 = CLIP_U8(pu1_src[1 * src_strd] + delta_q);
  /external/libvpx/libvpx/vp8/common/
onyx.h 272 unsigned int cols, int delta_q[4], int delta_lf[4],
  /external/libvpx/libvpx/vpx/
vp8cx.h 651 int delta_q[4]; /**< Quantizer deltas. */ member in struct:vpx_roi_map
  /external/libvpx/libvpx/vp8/encoder/
bitstream.c 1046 static void put_delta_q(vp8_writer *bc, int delta_q) {
1047 if (delta_q != 0) {
1049 vp8_write_literal(bc, abs(delta_q), 4);
1051 if (delta_q < 0)
    [all...]
onyx_if.c     [all...]
  /external/libvpx/libvpx/vp9/encoder/
vp9_bitstream.c 735 static void write_delta_q(struct vpx_write_bit_buffer *wb, int delta_q) {
736 if (delta_q != 0) {
738 vpx_wb_write_literal(wb, abs(delta_q), 4);
739 vpx_wb_write_bit(wb, delta_q < 0);
    [all...]
  /external/libvpx/libvpx/vp8/
vp8_cx_iface.c     [all...]

Completed in 371 milliseconds