Home
last modified time | relevance | path

Searched refs:imin (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
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()
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
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 …]
/frameworks/av/media/libstagefright/codecs/avc/enc/src/
Dmotion_est.cpp77 int bits, imax, imin, i; in InitMotionSearchModule() local
104 imin = imax >> 1; in InitMotionSearchModule()
106 for (i = imin; i < imax; i++) mvbits[-i] = mvbits[i] = bits; in InitMotionSearchModule()
974 int i, j, imin, jmin, ilow, ihigh, jlow, jhigh; in AVCMBMotionSearch() local
1055 imin = i0; 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()
1100 imin = i; in AVCMBMotionSearch()
[all …]
Davcenc_lib.h572 int *imin, int *jmin, int ilow, int ihigh, int jlow, int jhigh,