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

  /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
findhalfpel.cpp 193 Int d, dmin, sad8; local
206 sad8 = 0;
265 sad8 += dmin;
267 if (sad8 >= sad16 - PREF_16_VEC)
276 return sad8;
284 return sad8;
motion_est.cpp 157 Int sad8 = 0, sad16 = 0; local
305 sad8 = sad16;
307 sad8 = mot_mb[1].sad + mot_mb[2].sad + mot_mb[3].sad + mot_mb[4].sad;
311 (*ChooseMode)(mode_mb, cur, width, ((sad8 < sad16) ? sad8 : sad16));
360 sad8 = FindHalfPelBlk(video, cur, mot_mb, sad16,
378 //if(sad16 < sad8-PREF_16_VEC)
379 if (sad16 - PREF_16_VEC > sad8)
387 if (mot_mb[7].sad - PREF_NULL_VEC < sad16 && mot_mb[7].sad - PREF_NULL_VEC < sad8)
433 totalSAD += sad8;
    [all...]
  /external/opencv/cv/src/
cvstereobm.cpp 314 __m128i sad8 = _mm_load_si128((__m128i*)(sad + d)); local
315 sad8 = _mm_sub_epi16(sad8, v0);
316 sad8 = _mm_add_epi16(sad8, v1);
318 mask = _mm_cmpgt_epi16(minsad8, sad8);
319 _mm_store_si128((__m128i*)(sad + d), sad8);
320 minsad8 = _mm_min_epi16(minsad8, sad8);
359 __m128i sad8 = _mm_load_si128((__m128i*)(sad + d)); local
360 __m128i mask = _mm_cmpgt_epi16( thresh8, sad8 );
    [all...]

Completed in 843 milliseconds