Searched defs:jlow (Results 1 - 3 of 3) sorted by relevance

/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
H A Dfindhalfpel.cpp35 Int ilow, Int ihigh, Int jlow, Int jhigh);
75 Int imin, jmin, ilow, jlow; local
96 jlow = ypos - range;
104 if (jmin <= -15 || jmin == jlow)
115 if (jmin <= 0 || jmin == jlow)
189 Int imin, jmin, ilow, jlow; local
218 jlow = ypos + ((comp & 2) << 2) - range;
225 if (jmin <= -15 || jmin == jlow)
H A 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; local
815 jlow = j0 - range;
816 if (jlow < -15)
817 jlow = -15;
830 jlow = j0 - range;
831 if (jlow < 0)
832 jlow = 0;
847 dmin = fullsearch(video, currVol, ref, cur, &imin, &jmin, ilow, ihigh, jlow, jhig
1179 fullsearch(VideoEncData *video, Vol *currVol, UChar *prev, UChar *cur, Int *imin, Int *jmin, Int ilow, Int ihigh, Int jlow, Int jhigh) argument
1266 fullsearchBlk(VideoEncData *video, Vol *currVol, UChar *cent, UChar *cur, Int *imin, Int *jmin, Int ilow, Int ihigh, Int jlow, Int jhigh, Int range) argument
[all...]
/frameworks/av/media/libstagefright/codecs/avc/enc/src/
H A Dmotion_est.cpp974 int i, j, imin, jmin, ilow, ihigh, jlow, jhigh; local
1032 jlow = j0 - range;
1033 if (j0 - jlow > MaxVmvR[lev_idx] - 1) /* clip to conform with the standard */
1035 jlow = j0 - MaxVmvR[lev_idx] + 1;
1037 if (jlow < -13) // same reason as above
1039 jlow = -13;
1064 dmin = AVCFullSearch(encvid, ref, cur, &imin, &jmin, ilow, ihigh, jlow, jhigh, cmvx, cmvy);
1074 dmin = AVCFullSearch(encvid, ref, cur, &imin, &jmin, ilow, ihigh, jlow, jhigh, cmvx, cmvy);
1089 if (i >= ilow && i <= ihigh && j >= jlow && j <= jhigh)
1115 if (i >= ilow && i <= ihigh && j >= jlow
1260 AVCFullSearch(AVCEncObject *encvid, uint8 *prev, uint8 *cur, int *imin, int *jmin, int ilow, int ihigh, int jlow, int jhigh, int cmvx, int cmvy) argument
[all...]

Completed in 269 milliseconds