HomeSort by relevance Sort by last modified time
    Searched defs:dqcoeff_ptr (Results 1 - 4 of 4) sorted by null

  /external/libvpx/libvpx/vp8/encoder/x86/
vp8_enc_stubs_mmx.c 27 short *quant_ptr, short *dqcoeff_ptr);
36 short *dqcoeff_ptr = d->dqcoeff; local
48 dqcoeff_ptr
  /external/libvpx/libvpx/vp8/encoder/
quantize.c 33 short *dqcoeff_ptr = d->dqcoeff; local
37 vpx_memset(dqcoeff_ptr, 0, 32);
57 dqcoeff_ptr[rc] = x * dequant_ptr[rc]; /* dequantized value */
78 short *dqcoeff_ptr = d->dqcoeff; local
93 dqcoeff_ptr[rc] = x * dequant_ptr[rc]; /* dequantized value */
118 short *dqcoeff_ptr = d->dqcoeff; local
123 vpx_memset(dqcoeff_ptr, 0, 32);
145 dqcoeff_ptr[rc] = x * dequant_ptr[rc]; /* dequantized value */
172 short *dqcoeff_ptr; local
179 dqcoeff_ptr = d->dqcoeff
229 short *dqcoeff_ptr = d->dqcoeff; local
    [all...]
encodemb.c 234 short *dqcoeff_ptr; local
271 dqcoeff_ptr = d->dqcoeff;
328 dx = dqcoeff_ptr[rc] - coeff_ptr[rc];
459 dqcoeff_ptr[rc] = x * dequant_ptr[rc];
  /external/libvpx/libvpx/vp9/encoder/
vp9_encodemb.c 126 int16_t *dqcoeff_ptr; local
143 dqcoeff_ptr = BLOCK_OFFSET(pd->dqcoeff, block);
194 dx = mul * (dqcoeff_ptr[rc] - coeff_ptr[rc]);
300 vpx_memset(dqcoeff_ptr, 0, sizeof(*dqcoeff_ptr) * (16 << (tx_size * 2)));
308 dqcoeff_ptr[rc] = (x * dequant_ptr[rc != 0]) / mul;

Completed in 4688 milliseconds