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

  /external/libvpx/vp8/decoder/arm/
dequantize_arm.c 32 short *Q = d->qcoeff;
44 short *Q = d->qcoeff;
detokenize.asm 231 add r3, r11, r3, lsl #1 ; qcoeff + scan[c]
243 ldr r0, [sp, #l_qcoeff] ; qcoeff
260 add r0, r0, #32 ; qcoeff += 32 (16 * 2?)
264 str r0, [sp, #l_qcoeff] ; qcoeff
  /frameworks/base/media/libstagefright/codecs/m4v_h263/enc/src/
fastcodemb.h 68 Int BlockQuantDequantH263Inter(Int *rcoeff, Int *qcoeff, struct QPstruct *QuantParam,
72 Int BlockQuantDequantH263Intra(Int *rcoeff, Int *qcoeff, struct QPstruct *QuantParam,
76 Int BlockQuantDequantH263DCInter(Int *rcoeff, Int *qcoeff, struct QPstruct *QuantParam,
79 Int BlockQuantDequantH263DCIntra(Int *rcoeff, Int *qcoeff, struct QPstruct *QuantParam,
82 Int BlockQuantDequantMPEGInter(Int *rcoeff, Int *qcoeff, Int QP, Int *qmat,
86 Int BlockQuantDequantMPEGIntra(Int *rcoeff, Int *qcoeff, Int QP, Int *qmat,
90 Int BlockQuantDequantMPEGDCInter(Int *rcoeff, Int *qcoeff, Int QP, Int *qmat,
93 Int BlockQuantDequantMPEGDCIntra(Int *rcoeff, Int *qcoeff, Int QP, Int *qmat,
fastquant.cpp 123 Output: qcoeff=> quantized coefficient
149 Int BlockQuantDequantH263Inter(Short *rcoeff, Short *qcoeff, struct QPstruct *QuantParam,
233 qcoeff[zz>>1] = q_value;
269 Int BlockQuantDequantH263Intra(Short *rcoeff, Short *qcoeff, struct QPstruct *QuantParam,
313 qcoeff[0] = coeff;
319 //qcoeff++;
340 qcoeff[0] = coeff;
395 qcoeff[i] = q_value;
411 //qcoeff++; /* next column */
441 Int BlockQuantDequantH263DCInter(Short *rcoeff, Short *qcoeff, struct QPstruct *QuantParam
    [all...]
mp4enc_lib.h 65 Int BlockQuantDequantH263Inter(Short *rcoeff, Short *qcoeff, struct QPstruct *QuantParam,
69 Int BlockQuantDequantH263Intra(Short *rcoeff, Short *qcoeff, struct QPstruct *QuantParam,
73 Int BlockQuantDequantH263DCInter(Short *rcoeff, Short *qcoeff, struct QPstruct *QuantParam,
76 Int BlockQuantDequantH263DCIntra(Short *rcoeff, Short *qcoeff, struct QPstruct *QuantParam,
80 Int BlockQuantDequantMPEGInter(Short *rcoeff, Short *qcoeff, Int QP, Int *qmat,
84 Int BlockQuantDequantMPEGIntra(Short *rcoeff, Short *qcoeff, Int QP, Int *qmat,
88 Int BlockQuantDequantMPEGDCInter(Short *rcoeff, Short *qcoeff, Int QP, Int *qmat,
91 Int BlockQuantDequantMPEGDCIntra(Short *rcoeff, Short *qcoeff, Int QP, Int *qmat,
vlc_encode.cpp 2055 Short *qcoeff; local
    [all...]
  /external/libvpx/vp8/encoder/arm/
quantize_arm.c 32 d->eob = vp8_fast_quantize_b_neon_func(b->coeff, &b->zbin[0][0], d->qcoeff, d->dqcoeff, d->dequant[0], vp8_rvsplus1_default_zig_zag1d, &b->round[0][0], &b->quant[0][0]);
46 short *qcoeff_ptr = d->qcoeff;
  /external/libvpx/vp8/decoder/x86/
x86_dsystemdependent.c 22 short *sq = (short *) d->qcoeff;
  /external/libvpx/vp8/common/
blockd.h 192 short *qcoeff; member in struct:__anon5216
220 DECLARE_ALIGNED(16, short, qcoeff[400]);
mbpitch.c 118 x->block[r].qcoeff = x->qcoeff + r * 16;
  /external/libvpx/vp8/decoder/
decodframe.c 239 ((int *)b->qcoeff)[0] = 0;
240 ((int *)b->qcoeff)[1] = 0;
241 ((int *)b->qcoeff)[2] = 0;
242 ((int *)b->qcoeff)[3] = 0;
243 ((int *)b->qcoeff)[4] = 0;
244 ((int *)b->qcoeff)[5] = 0;
245 ((int *)b->qcoeff)[6] = 0;
246 ((int *)b->qcoeff)[7] = 0;
251 ((int *)b->qcoeff)[0] = 0;
255 (xd->qcoeff, &xd->block[0].dequant[0][0]
    [all...]
dequantize.c 26 short *Q = d->qcoeff;
detokenize.c 98 dx->detoken.qcoeff_start_ptr = &x->qcoeff[0];
274 qcoeff_ptr = &x->qcoeff[0];
  /external/libvpx/vp8/encoder/
quantize.c 31 short *qcoeff_ptr = d->qcoeff;
78 short *qcoeff_ptr = d->qcoeff;
131 short *qcoeff_ptr = d->qcoeff;
175 short *qcoeff_ptr = d->qcoeff;
239 qcoeff_ptr = d->qcoeff;
tokenize.c 112 const short *qcoeff_ptr = b->qcoeff;
165 const short *qcoeff_ptr = b->qcoeff;
encodemb.c 291 qcoeff_ptr = d->qcoeff;
rdopt.c 587 short *qcoeff_ptr = b->qcoeff;
    [all...]
  /external/libvpx/vp8/common/x86/
idctllm_sse2.asm 16 ; short *qcoeff - 0
33 mov rax, arg(0) ; qcoeff
111 ; dc is set as first coeff, so no need to load qcoeff
112 mov rax, arg(0) ; qcoeff
135 ; dequantize qcoeff buffer
356 ; short *qcoeff - 0
374 ; dc is set as first coeff, so no need to load qcoeff
375 mov rax, arg(0) ; qcoeff
450 ; dc is set as first coeff, so no need to load qcoeff
451 mov rax, arg(0) ; qcoeff
    [all...]
  /external/libvpx/vp8/encoder/arm/neon/
fastquantizeb_neon.asm 89 vst1.s16 {q4, q5}, [r2] ;store: qcoeff = x1
110 vst1.s16 {q10, q11}, [r2] ; qcoeff = 0
  /external/libvpx/vp8/encoder/x86/
x86_csystemdependent.c 37 short *qcoeff_ptr = d->qcoeff;
102 short *qcoeff_ptr = d->qcoeff;
133 short *qcoeff_ptr = d->qcoeff;
quantize_sse2.asm 114 movdqa OWORD PTR[rsi], xmm6 ;zero qcoeff
115 movdqa OWORD PTR[rsi + 16], xmm6 ;zero qcoeff

Completed in 726 milliseconds