Home
last modified time | relevance | path

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

/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
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
812 ihigh = i0 + range - 1; in MBMotionSearch()
813 if (ihigh > width - 1) in MBMotionSearch()
814 ihigh = width - 1; in MBMotionSearch()
827 ihigh = i0 + range - 1; in MBMotionSearch()
828 if (ihigh > width - 16) in MBMotionSearch()
829 ihigh = width - 16; in MBMotionSearch()
847 dmin = fullsearch(video, currVol, ref, cur, &imin, &jmin, ilow, ihigh, jlow, jhigh); in MBMotionSearch()
[all …]
Dfindhalfpel.cpp35 Int ilow, Int ihigh, Int jlow, Int jhigh);
/frameworks/av/media/libstagefright/codecs/avc/enc/src/
Dmotion_est.cpp974 int i, j, imin, jmin, ilow, ihigh, jlow, jhigh; in AVCMBMotionSearch() local
1022 ihigh = i0 + range - 1; in AVCMBMotionSearch()
1023 if (ihigh - i0 > 2047) /* clip to conform with the standard */ in AVCMBMotionSearch()
1025 ihigh = i0 + 2047; in AVCMBMotionSearch()
1027 if (ihigh > width - 3) in AVCMBMotionSearch()
1029 ihigh = width - 3; // change from width-1 to width-3 for the same reason as above in AVCMBMotionSearch()
1064 dmin = AVCFullSearch(encvid, ref, cur, &imin, &jmin, ilow, ihigh, jlow, jhigh, cmvx, cmvy); in AVCMBMotionSearch()
1074 … dmin = AVCFullSearch(encvid, ref, cur, &imin, &jmin, ilow, ihigh, jlow, jhigh, cmvx, cmvy); in AVCMBMotionSearch()
1089 if (i >= ilow && i <= ihigh && j >= jlow && j <= jhigh) in AVCMBMotionSearch()
1115 if (i >= ilow && i <= ihigh && j >= jlow && j <= jhigh) in AVCMBMotionSearch()
[all …]
Davcenc_lib.h572 int *imin, int *jmin, int ilow, int ihigh, int jlow, int jhigh,