Searched refs:distortion (Results 1 - 13 of 13) sorted by relevance

/external/libvpx/vp8/encoder/
H A Drdopt.h15 int vp8_rd_pick_intra4x4mby_modes(VP8_COMP *cpi, MACROBLOCK *mb, int *rate, int *rate_to, int *distortion, int best_rd);
17 int vp8_rd_pick_intra_mbuv_mode(VP8_COMP *cpi, MACROBLOCK *x, int *rate, int *rate_to, int *distortion);
H A Drdopt.c613 int distortion; local
642 distortion = ENCODEMB_INVOKE(IF_RTCD(&cpi->rtcd.encodemb), berr)(be->coeff, b->dqcoeff) >> 2;
644 this_rd = RDCOST(x->rdmult, x->rddiv, rate, distortion);
650 *bestdistortion = distortion;
674 int distortion = 0; local
713 distortion += d;
726 *Distortion = distortion;
728 return RDCOST(mb->rdmult, mb->rddiv, cost, distortion);
739 int distortion; local
751 macro_block_yrd(x, &ratey, &distortion, IF_RTC
794 vp8_rd_inter_uv(VP8_COMP *cpi, MACROBLOCK *x, int *rate, int *distortion, int fullpixel) argument
806 vp8_rd_pick_intra_mbuv_mode(VP8_COMP *cpi, MACROBLOCK *x, int *rate, int *rate_tokenonly, int *distortion) argument
817 int distortion; local
978 unsigned int distortion = 0; local
1095 int distortion; local
1743 int distortion; local
[all...]
H A Dpickinter.c134 int distortion = 0; local
142 distortion += diff * diff;
149 return distortion;
178 int distortion; local
196 distortion = get_prediction_error(be, b, &rtcd->variance);
197 this_rd = RD_ESTIMATE(x->rdmult, x->rddiv, rate, distortion);
202 *bestdistortion = distortion;
221 int distortion = 0; local
238 distortion += d;
243 if (distortion > *best_dis
[all...]
H A Dencodeframe.c1019 // Keep record of the total distortion this time around for future use
1237 int distortion; local
1261 inter_error = vp8_rd_pick_inter_mode(cpi, x, recon_yoffset, recon_uvoffset, &rate, &distortion, &intra_error);
1275 inter_error = vp8_pick_inter_mode(cpi, x, recon_yoffset, recon_uvoffset, &rate, &distortion, &intra_error);
1283 cpi->frame_distortion += distortion;
1284 cpi->last_mb_distortion = distortion;
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/textures/
H A DTextureGeneratorDistnoise.java115 * @param distortion
120 private float musgraveVariableLunacrityNoise(float x, float y, float z, float distortion, int nbas1, int nbas2) { argument
130 float rx = abstractNoiseFunc1.execute(x + 13.5f, y + 13.5f, z + 13.5f) * distortion;
131 float ry = abstractNoiseFunc1.execute(x, y, z) * distortion;
132 float rz = abstractNoiseFunc1.execute(x - 13.5f, y - 13.5f, z - 13.5f) * distortion;
/external/aac/libAACenc/src/
H A Dquantize.cpp290 description: calculates distortion of quantized values
291 returns: distortion
343 description: calculates energy and distortion of quantized values
347 output: energy, distortion
362 FIXP_DBL distortion = FL2FXCONST_DBL(0.0f); local
389 distortion += diff;
393 *dist = CalcLdData(distortion);
/external/libvpx/vp8/encoder/x86/
H A Dssim_opt.asm62 ; all the parms needed for 16x16 ssim so we can play with dssim as distortion
150 ; all the parms needed for 16x16 ssim so we can play with dssim as distortion
/external/opencv/cvaux/src/
H A Dcvcalibfilter.cpp286 cameraParams[i].distortion,
875 CvMat k = cvMat( 1, 4, CV_32FC1, cameraParams[i].distortion );
H A Dcv3dtracker.cpp234 const_cast<float *>(camera_intrinsics[c].distortion),
H A Dcvepilines.cpp3192 stereoparams->camera[0]->distortion,
3204 stereoparams->camera[1]->distortion,
3224 stereoparams->camera[0]->distortion,
3228 stereoparams->camera[1]->distortion,
/external/webp/src/enc/
H A Dframe.c840 uint64_t distortion = 0; local
865 distortion += info.D;
875 *PSNR = (float)(10.* log10(255. * 255. * pixel_count / distortion));
H A Dquant.c397 score_t error; // distortion = sum of (|coeff_i| - level_i * Q_i)^2
415 score_t distortion) {
416 return rate * lambda + 256 * distortion;
440 // compute maximal distortion.
497 // subtract as distortion to max_error
689 // RD-opt decision. Reconstruct each modes, evalue distortion and bit-cost.
414 RDScoreTrellis(int lambda, score_t rate, score_t distortion) argument
/external/opencv/cvaux/include/
H A Dcvaux.h513 float distortion[4]; /* distortion coefficients - two coefficients for radial distortion member in struct:CvCamera
894 float distortion[4]; member in struct:__anon9587

Completed in 1970 milliseconds