/external/libvpx/vp8/encoder/arm/ |
quantize_arm.c | 31 d->eob = vp8_fast_quantize_b_neon_func(b->coeff, b->zbin, d->qcoeff, d->dqcoeff, d->dequant, vp8_rvsplus1_default_zig_zag1d, b->round, b->quant_fast); 39 int zbin; 42 short *zbin_ptr = &b->Zbin[0][0]; 54 zbin = zbin_ptr[i] ; 57 if(x>=zbin)
|
/external/libvpx/vp8/encoder/ |
quantize.c | 24 int zbin; local 27 short *zbin_ptr = b->zbin; 44 zbin = zbin_ptr[rc] ; 49 if (x >= zbin) 108 int zbin; local 112 short *zbin_ptr = b->zbin; 131 zbin = zbin_ptr[rc] + *zbin_boost_ptr + zbin_oq_value; 137 if (x >= zbin) 220 int zbin; local 224 short *zbin_ptr = b->zbin; [all...] |
block.h | 38 short *zbin; member in struct:__anon7720 42 // Zbin Over Quant value
|
asm_enc_offsets.c | 38 DEFINE(vp8_block_zbin, offsetof(BLOCK, zbin));
|
ethreading.c | 339 z->block[i].zbin = x->block[i].zbin;
|
encodeframe.c | 336 x->block[i].zbin = cpi->Y1zbin[QIndex]; 351 x->block[i].zbin = cpi->UVzbin[QIndex]; 363 x->block[24].zbin = cpi->Y2zbin[QIndex]; 399 // Clear Zbin mode boost for default case [all...] |
/external/libvpx/vp8/encoder/arm/neon/ |
fastquantizeb_neon.asm | 32 vld1.16 {q10, q11}, [r1] ;load zbin 37 vcge.s16 q10, q4, q10 ;x>=zbin 40 ;if x<zbin (q10 & q11 are all 0), go to zero_output
|
/external/libvpx/vp8/encoder/x86/ |
quantize_sse2.asm | 138 ; if (x >= zbin) 139 sub cx, WORD PTR[rsi] ; x - zbin 141 jl rq_zigzag_loop_%1 ; x < zbin
|
x86_csystemdependent.c | 33 short *zbin_ptr = b->zbin;
|