Searched refs:jlow (Results 1 – 4 of 4) sorted by relevance
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/ |
D | findhalfpel.cpp | 35 Int ilow, Int ihigh, Int jlow, Int jhigh); 75 Int imin, jmin, ilow, jlow; in FindHalfPelMB() local 96 jlow = ypos - range; in FindHalfPelMB() 104 if (jmin <= -15 || jmin == jlow) in FindHalfPelMB() 115 if (jmin <= 0 || jmin == jlow) in FindHalfPelMB() 189 Int imin, jmin, ilow, jlow; in FindHalfPelBlk() local 218 jlow = ypos + ((comp & 2) << 2) - range; in FindHalfPelBlk() 225 if (jmin <= -15 || jmin == jlow) 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 815 jlow = j0 - range; in MBMotionSearch() 816 if (jlow < -15) in MBMotionSearch() 817 jlow = -15; in MBMotionSearch() 830 jlow = j0 - range; in MBMotionSearch() 831 if (jlow < 0) in MBMotionSearch() 832 jlow = 0; in MBMotionSearch() 847 dmin = fullsearch(video, currVol, ref, cur, &imin, &jmin, ilow, ihigh, jlow, jhigh); in MBMotionSearch() [all …]
|
/frameworks/av/media/libstagefright/codecs/avc/enc/src/ |
D | motion_est.cpp | 974 int i, j, imin, jmin, ilow, ihigh, jlow, jhigh; in AVCMBMotionSearch() local 1032 jlow = j0 - range; in AVCMBMotionSearch() 1033 if (j0 - jlow > MaxVmvR[lev_idx] - 1) /* clip to conform with the standard */ in AVCMBMotionSearch() 1035 jlow = j0 - MaxVmvR[lev_idx] + 1; in AVCMBMotionSearch() 1037 if (jlow < -13) // same reason as above in AVCMBMotionSearch() 1039 jlow = -13; 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 …]
|
D | avcenc_lib.h | 572 int *imin, int *jmin, int ilow, int ihigh, int jlow, int jhigh,
|