Searched refs:dequant_ptr (Results 1 – 8 of 8) sorted by relevance
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/x86/ |
D | vp8_enc_stubs_mmx.c | 25 short *qcoeff_ptr, short *dequant_ptr, 37 short *dequant_ptr = d->dequant; in vp8_fast_quantize_b_mmx() local 43 dequant_ptr, in vp8_fast_quantize_b_mmx()
|
D | quantize_mmx.asm | 15 ; short *qcoeff_ptr,short *dequant_ptr, 63 mov rax, arg(3) ;dequant_ptr 103 mov rax, arg(3) ;dequant_ptr 144 mov rax, arg(3) ;dequant_ptr 185 mov rax, arg(3) ;dequant_ptr
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/ |
D | quantize.c | 34 short *dequant_ptr = d->dequant; in vp8_fast_quantize_b_c() local 57 dqcoeff_ptr[rc] = x * dequant_ptr[rc]; /* dequantized value */ in vp8_fast_quantize_b_c() 79 short *dequant_ptr = d->dequant; in vp8_fast_quantize_b_c() local 93 dqcoeff_ptr[rc] = x * dequant_ptr[rc]; /* dequantized value */ in vp8_fast_quantize_b_c() 119 short *dequant_ptr = d->dequant; in vp8_regular_quantize_b_c() local 145 dqcoeff_ptr[rc] = x * dequant_ptr[rc]; /* dequantized value */ in vp8_regular_quantize_b_c() 173 short *dequant_ptr; in vp8_strict_quantize_b_c() local 180 dequant_ptr = d->dequant; in vp8_strict_quantize_b_c() 192 dq = dequant_ptr[rc]; in vp8_strict_quantize_b_c() 230 short *dequant_ptr = d->dequant; in vp8_regular_quantize_b_c() local [all …]
|
D | encodemb.c | 231 const short *dequant_ptr; in optimize_b() local 268 dequant_ptr = d->dequant; in optimize_b() 340 if((abs(x)*dequant_ptr[rc]>abs(coeff_ptr[rc])) && in optimize_b() 341 (abs(x)*dequant_ptr[rc]<abs(coeff_ptr[rc])+dequant_ptr[rc])) in optimize_b() 397 dx -= (dequant_ptr[rc] + sz) ^ sz; in optimize_b() 459 dqcoeff_ptr[rc] = x * dequant_ptr[rc]; in optimize_b()
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/ |
D | vp9_quantize.c | 27 const int16_t *dequant_ptr, in vp9_quantize_b_c() argument 64 dqcoeff_ptr[rc] = qcoeff_ptr[rc] * dequant_ptr[rc != 0]; in vp9_quantize_b_c() 80 const int16_t *dequant_ptr, in vp9_quantize_b_32x32_c() argument 120 dqcoeff_ptr[rc] = qcoeff_ptr[rc] * dequant_ptr[rc != 0] / 2; in vp9_quantize_b_32x32_c()
|
D | vp9_encodemb.c | 131 const int16_t *dequant_ptr = pd->dequant; in optimize_b() local 199 if ((abs(x)*dequant_ptr[rc != 0] > abs(coeff[rc]) * mul) && in optimize_b() 200 (abs(x)*dequant_ptr[rc != 0] < abs(coeff[rc]) * mul + in optimize_b() 201 dequant_ptr[rc != 0])) in optimize_b() 241 dx -= (dequant_ptr[rc != 0] + sz) ^ sz; in optimize_b() 298 dqcoeff[rc] = (x * dequant_ptr[rc != 0]) / mul; in optimize_b()
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/ |
D | vp9_rtcd_defs.pl | 709 …t_shift_ptr, int16_t *qcoeff_ptr, int16_t *dqcoeff_ptr, const int16_t *dequant_ptr, int zbin_oq_va… 712 …t_shift_ptr, int16_t *qcoeff_ptr, int16_t *dqcoeff_ptr, const int16_t *dequant_ptr, int zbin_oq_va…
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/arm/neon/ |
D | fastquantizeb_neon.asm | 77 vld1.s16 {q6, q7}, [r8@128] ;load dequant_ptr[i]
|