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

  /external/libvpx/libvpx/test/
set_roi.cc 31 int delta_q[MAX_MB_SEGMENTS] = { -2, -25, 0, 31 }; local
70 cpi.common.mb_cols, delta_q, delta_lf,
84 const int transq = internalq_trans[abs(delta_q[i])];
87 << "segment delta_q error";
142 // One delta_q error shown at a time
148 cpi.common.mb_cols, delta_q,
160 cpi.common.mb_cols, delta_q,
167 cpi.common.mb_cols, delta_q,
172 cpi.common.mb_cols - 1, delta_q,
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/test/
set_roi.cc 31 int delta_q[MAX_MB_SEGMENTS] = { -2, -25, 0, 31 }; local
70 cpi.common.mb_cols, delta_q, delta_lf,
84 const int transq = internalq_trans[abs(delta_q[i])];
87 << "segment delta_q error";
142 // One delta_q error shown at a time
148 cpi.common.mb_cols, delta_q,
160 cpi.common.mb_cols, delta_q,
167 cpi.common.mb_cols, delta_q,
172 cpi.common.mb_cols - 1, delta_q,
  /external/libvpx/libvpx/examples/
set_maps.c 73 roi.delta_q[0] = 0;
74 roi.delta_q[1] = -2;
75 roi.delta_q[2] = -4;
76 roi.delta_q[3] = -6;
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/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;
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vpx/
vp8cx.h 233 int delta_q[4]; /**< Quantizer deltas. */ member in struct:vpx_roi_map
  /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 273 int vp8_set_roimap(struct VP8_COMP* comp, unsigned char *map, unsigned int rows, unsigned int cols, int delta_q[4], int delta_lf[4], unsigned int threshold[4]);
  /external/libvpx/libvpx/vpx/
vp8cx.h 611 int delta_q[4]; /**< Quantizer deltas. */ member in struct:vpx_roi_map
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/common/
onyx.h 261 int vp8_set_roimap(struct VP8_COMP* comp, unsigned char *map, unsigned int rows, unsigned int cols, int delta_q[4], int delta_lf[4], unsigned int threshold[4]);
  /external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletDynamics/Featherstone/
btMultiBodyDynamicsWorld.cpp 636 btAlignedObjectArray<btScalar> delta_q; delta_q.resize(numDofs); local
640 delta_q[i] = h/btScalar(6.)*(scratch_qd0[i] + 2*scratch_qd1[i] + 2*scratch_qd2[i] + scratch_qd3[i]);
642 //delta_q[i] = h*scratch_qd0[i];
655 pRealBuf[i] = delta_q[i];
657 //bod->stepPositionsMultiDof(1, 0, &delta_q[0]);
  /external/libvpx/libvpx/vp8/encoder/
bitstream.c     [all...]
onyx_if.c     [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/
bitstream.c     [all...]
onyx_if.c     [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
vp9_onyx_int.h 557 int delta_q[MAX_SEGMENTS],
vp9_bitstream.c 723 static void write_delta_q(struct vp9_write_bit_buffer *wb, int delta_q) {
724 if (delta_q != 0) {
726 vp9_wb_write_literal(wb, abs(delta_q), 4);
727 vp9_wb_write_bit(wb, delta_q < 0);
    [all...]
vp9_onyx_if.c     [all...]
  /external/libvpx/libvpx/vp9/encoder/
vp9_bitstream.c 734 static void write_delta_q(struct vpx_write_bit_buffer *wb, int delta_q) {
735 if (delta_q != 0) {
737 vpx_wb_write_literal(wb, abs(delta_q), 4);
738 vpx_wb_write_bit(wb, delta_q < 0);
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/decoder/
vp9_decodeframe.c 568 static int read_delta_q(struct vp9_read_bit_buffer *rb, int *delta_q) {
569 const int old = *delta_q;
570 *delta_q = vp9_rb_read_bit(rb) ? vp9_rb_read_signed_literal(rb, 4) : 0;
571 return old != *delta_q;
    [all...]
  /external/libvpx/libvpx/vp8/
vp8_cx_iface.c     [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/
vp8_cx_iface.c     [all...]

Completed in 1588 milliseconds