Searched refs:imin (Results 1 – 2 of 2) sorted by relevance
/frameworks/av/media/codecs/m4v_h263/enc/src/ |
D | findhalfpel.cpp | 75 Int imin, jmin, ilow, jlow; in FindHalfPelMB() local 93 imin = xpos + (mot[0].x >> 1); in FindHalfPelMB() 100 if (imin <= -15 || imin == ilow) in FindHalfPelMB() 102 else if (imin >= width - 1) in FindHalfPelMB() 111 if (imin <= 0 || imin == ilow) in FindHalfPelMB() 113 else if (imin >= width - 16) in FindHalfPelMB() 189 Int imin, jmin, ilow, jlow; in FindHalfPelBlk() local 215 imin = xpos + ((comp & 1) << 3) + (mot[comp+1].x >> 1); in FindHalfPelBlk() 220 if (imin <= -15 || imin == ilow) in FindHalfPelBlk() 222 else if (imin >= width - 1) in FindHalfPelBlk()
|
D | motion_est.cpp | 79 Int *imin, Int *jmin, Int ilow, Int ihigh, Int jlow, Int jhigh); 81 Int *imin, Int *jmin, Int ilow, Int ihigh, Int jlow, Int jhigh, Int range); 789 Int i, j, imin, jmin, ilow, ihigh, jlow, jhigh, iorg, jorg; in MBMotionSearch() local 838 imin = i0; in MBMotionSearch() 840 ncand = ref + imin + jmin * lx; in MBMotionSearch() 847 dmin = fullsearch(video, currVol, ref, cur, &imin, &jmin, ilow, ihigh, jlow, jhigh); in MBMotionSearch() 849 ncand = ref + imin + jmin * lx; in MBMotionSearch() 852 mot[mbnum][0].x = (imin - i0) << 1; in MBMotionSearch() 854 imin0 = imin << 1; /* 16x16 MV in half-pel resolution */ in MBMotionSearch() 864 dmin = fullsearch(video, currVol, ref, cur, &imin, &jmin, ilow, ihigh, jlow, jhigh); in MBMotionSearch() [all …]
|