Searched defs:coeff (Results 1 - 12 of 12) sorted by relevance

/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/arm/neon/
H A Dshortfdct_neon.asm23 coeff label
36 adr r12, coeff
117 adr r12, coeff
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/test/
H A Didct8x8_test.cc112 int16_t input[64], coeff[64]; local
126 coeff[j] = round(output_r[j]);
127 vp9_idct8x8_64_add_c(coeff, dst, 8);
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
H A Dvp9_quantize.c43 const int coeff = coeff_ptr[rc]; local
45 if (coeff < zbins[rc != 0] && coeff > nzbins[rc != 0])
55 const int coeff = coeff_ptr[rc]; local
56 const int coeff_sign = (coeff >> 31);
57 const int abs_coeff = (coeff ^ coeff_sign) - coeff_sign;
98 const int coeff = coeff_ptr[rc]; local
102 if (coeff >= zbins[rc != 0] || coeff <= nzbins[rc != 0])
110 const int coeff local
[all...]
H A Dvp9_encodemb.c117 const int16_t *coeff = BLOCK_OFFSET(mb->plane[plane].coeff, block); local
186 dx = mul * (dqcoeff[rc] - coeff[rc]);
199 if ((abs(x)*dequant_ptr[rc != 0] > abs(coeff[rc]) * mul) &&
200 (abs(x)*dequant_ptr[rc != 0] < abs(coeff[rc]) * mul +
323 int16_t *const coeff = BLOCK_OFFSET(p->coeff, block); local
335 fdct32x32(x->use_lp32x32fdct, src_diff, coeff, diff_stride);
336 vp9_quantize_b_32x32(coeff, 1024, x->skip_block, p->zbin, p->round,
342 vp9_fdct16x16(src_diff, coeff, diff_strid
483 int16_t *coeff = BLOCK_OFFSET(p->coeff, block); local
[all...]
H A Dvp9_block.h33 int16_t *coeff[MAX_MB_PLANE][3]; member in struct:__anon1141
69 int16_t *coeff; member in struct:macroblock_plane
H A Dvp9_rdopt.c526 int64_t vp9_block_error_c(const int16_t *coeff, const int16_t *dqcoeff, argument
532 const int diff = coeff[i] - dqcoeff[i];
534 sqcoeff += coeff[i] * coeff[i];
635 int16_t *const coeff = BLOCK_OFFSET(p->coeff, block); local
637 args->dist = vp9_block_error(coeff, dqcoeff, 16 << ss_txfrm_size,
1101 int16_t *const coeff = BLOCK_OFFSET(x->plane[0].coeff, block); local
1112 vp9_fwht4x4(src_diff, coeff,
1585 int16_t* coeff; local
[all...]
/hardware/intel/common/wrs_omxil_core/utils/src/
H A Daudio_parser.c303 int coeff; local
314 coeff = bitrate_coeff_table[layer];
316 frame_length = coeff * bitrate * 1000 / samplingrate + one_slot_length;
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/
H A Dblock.h39 short *coeff; member in struct:block
70 DECLARE_ALIGNED(16, short, coeff[400]); /* 25 blocks Y,U,V,Y2 */
H A Drdopt.c409 int vp8_block_error_c(short *coeff, short *dqcoeff) argument
416 int this_diff = coeff[i] - dqcoeff[i];
439 int this_diff = be->coeff[j] - bd->dqcoeff[j];
464 error += vp8_block_error_c(be->coeff, bd->dqcoeff);
593 mb->short_fdct8x4(beptr->src_diff, beptr->coeff, 32);
594 *Y2DCPtr++ = beptr->coeff[0];
595 *Y2DCPtr++ = beptr->coeff[16];
599 mb->short_walsh4x4(mb_y2->src_diff, mb_y2->coeff, 8);
612 d += vp8_block_error(mb_y2->coeff, x_y2->dqcoeff);
673 x->short_fdct4x4(be->src_diff, be->coeff, 3
[all...]
/hardware/intel/img/hwcomposer/merrifield/ips/common/
H A DOverlayPlaneBase.cpp867 bool OverlayPlaneBase::setCoeffRegs(double *coeff, int mantSize, argument
876 c = *coeff;
886 *coeff = (double)icoeff / (double)(4 * maxVal);
890 *coeff = (double)icoeff / (double)(2 * maxVal);
894 *coeff = (double)icoeff / (double)(maxVal);
898 *coeff = (double)icoeff / (double)(maxVal / 2);
906 *coeff = -(*coeff);
/hardware/intel/img/hwcomposer/moorefield_hdmi/ips/common/
H A DOverlayPlaneBase.cpp847 bool OverlayPlaneBase::setCoeffRegs(double *coeff, int mantSize, argument
856 c = *coeff;
866 *coeff = (double)icoeff / (double)(4 * maxVal);
870 *coeff = (double)icoeff / (double)(2 * maxVal);
874 *coeff = (double)icoeff / (double)(maxVal);
878 *coeff = (double)icoeff / (double)(maxVal / 2);
886 *coeff = -(*coeff);
/hardware/intel/img/psb_video/src/
H A Dpsb_overlay.c287 SetCoeffRegs(double *coeff, int mantSize, coeffPtr pCoeff, int pos) argument
295 c = *coeff;
305 *coeff = (double)icoeff / (double)(4 * maxVal);
309 *coeff = (double)icoeff / (double)(2 * maxVal);
313 *coeff = (double)icoeff / (double)(maxVal);
317 *coeff = (double)icoeff / (double)(maxVal / 2);
325 *coeff = -(*coeff);

Completed in 340 milliseconds