Home
last modified time | relevance | path

Searched refs:jmin (Results 1 – 4 of 4) sorted by relevance

/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
Dfindhalfpel.cpp75 Int imin, jmin, ilow, jlow; in FindHalfPelMB() local
94 jmin = ypos + (mot[0].y >> 1); in FindHalfPelMB()
104 if (jmin <= -15 || jmin == jlow) in FindHalfPelMB()
106 else if (jmin >= height - 1) in FindHalfPelMB()
115 if (jmin <= 0 || jmin == jlow) in FindHalfPelMB()
117 else if (jmin >= height - 16) in FindHalfPelMB()
189 Int imin, jmin, ilow, jlow; in FindHalfPelBlk() local
216 jmin = ypos + ((comp & 2) << 2) + (mot[comp+1].y >> 1); in FindHalfPelBlk()
225 if (jmin <= -15 || jmin == jlow) in FindHalfPelBlk()
227 else if (jmin >= height - 1) in FindHalfPelBlk()
Dmotion_est.cpp79 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
839 jmin = j0; /* needed for fullsearch */ 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()
853 mot[mbnum][0].y = (jmin - j0) << 1; in MBMotionSearch()
855 jmin0 = jmin << 1; in MBMotionSearch()
864 dmin = fullsearch(video, currVol, ref, cur, &imin, &jmin, ilow, ihigh, jlow, jhigh); in MBMotionSearch()
[all …]
/frameworks/av/media/libstagefright/codecs/avc/enc/src/
Dmotion_est.cpp974 int i, j, imin, jmin, ilow, ihigh, jlow, jhigh; in AVCMBMotionSearch() local
1056 jmin = j0; /* needed for fullsearch */ in AVCMBMotionSearch()
1064 dmin = AVCFullSearch(encvid, ref, cur, &imin, &jmin, ilow, ihigh, jlow, jhigh, cmvx, cmvy); in AVCMBMotionSearch()
1066 ncand = ref + imin + jmin * lx; in AVCMBMotionSearch()
1074 … dmin = AVCFullSearch(encvid, ref, cur, &imin, &jmin, ilow, ihigh, jlow, jhigh, cmvx, cmvy); in AVCMBMotionSearch()
1075 ncand = ref + imin + jmin * lx; in AVCMBMotionSearch()
1101 jmin = j; in AVCMBMotionSearch()
1126 jmin = j; in AVCMBMotionSearch()
1147 j = jmin - 1; in AVCMBMotionSearch()
1169 jmin = j; in AVCMBMotionSearch()
[all …]
Davcenc_lib.h572 int *imin, int *jmin, int ilow, int ihigh, int jlow, int jhigh,