HomeSort by relevance Sort by last modified time
    Searched full:satd (Results 1 - 10 of 10) sorted by null

  /external/libvpx/libvpx/vpx_dsp/
avg.c 130 int satd = 0; local
131 for (i = 0; i < length; ++i) satd += abs(coeff[i]);
133 // satd: 26 bits, dynamic range [-32640 * 1024, 32640 * 1024]
134 return satd;
  /hardware/intel/img/psb_video/src/
tng_hostair.h 46 IMG_UINT32 ui32SAD_Intra_MBInfo; //!< SATD/SAD for best Intra candidate (24-bit unsigned value) plus 8 bit field containing MB info
47 IMG_UINT32 ui32SAD_Inter_MBInfo; //!< SATD/SAD for best Inter candidate (24-bit unsigned value) plus 8 bit field containing MB info
48 IMG_UINT32 ui32SAD_Direct_MBInfo; //!< SATD/SAD for best Direct candidate (24-bit unsigned value) plus 8 bit field containing MB info
tng_hostdefs.h 319 IMG_UINT8 ui8_InterSumSatdHi; //!< High 8 bits for the inter sum satd
320 IMG_UINT8 ui8_IntraSumSatdHi; //!< High 8 bits for the intra sum satd
329 IMG_UINT32 ui32_InterSumSatd; //!< Sum of SATD for all Inter-MBs in the slice
330 IMG_UINT32 ui32_IntraSumSatd; //!< Sum of SATD for all Intra-MBs in the slice
    [all...]
tng_hostbias.c 376 ui32RegVal |= (uiLambdaSATD) << 8; //SATD lambda
489 {175, -10166, 163244 }, //SATD Lambda High
490 { 16, -236, 8693 }, //SATD Lambda Low
  /external/libvpx/libvpx/vpx_dsp/arm/
avg_neon.c 69 // satd: 26 bits, dynamic range [-32640 * 1024, 32640 * 1024]
73 const int satd = vget_lane_s32(s1, 0); local
74 return satd;
  /external/libavc/encoder/
ih264e_intra_modes_eval.h 119 * (distortion + lambda*rate). Where distortion is SAD/SATD,... between the
156 * (distortion + lambda*rate). Where distortion is SAD/SATD,... between the
193 * (distortion + lambda*rate). Where distortion is SAD/SATD,... between the
233 * (distortion + lambda*rate). Where distortion is SAD/SATD,... between the
ih264e_intra_modes_eval.c 308 * (distortion + lambda*rate). Where distortion is SAD/SATD,... between the
502 * (distortion + lambda*rate). Where distortion is SAD/SATD,... between the
751 * (distortion + lambda*rate). Where distortion is SAD/SATD,... between the
    [all...]
  /external/libvpx/libvpx/vpx_dsp/mips/
avg_msa.c 258 int i, satd; local
271 satd = HADD_UW_U32(tmp0_w);
293 satd = HADD_UW_U32(tmp0_w);
338 satd = HADD_UW_U32(tmp0_w);
383 satd = HADD_UW_U32(tmp0_w);
385 satd = 0;
388 satd += abs(data[i]);
392 return satd;
  /external/libvpx/libvpx/test/
avg_test.cc 364 FAIL() << "Invalid satd size (" << satd_size_
408 FAIL() << "Invalid satd size (" << txfm_size_
  /external/libvpx/libvpx/vp9/encoder/
vp9_mbgraph.c 134 // calculate SATD for each intra prediction mode;

Completed in 668 milliseconds