/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/ |
findhalfpel.cpp | 35 Int ilow, Int ihigh, Int jlow, Int jhigh); 75 Int imin, jmin, ilow, jlow; local 95 ilow = xpos - range; 100 if (imin <= -15 || imin == ilow) 111 if (imin <= 0 || imin == ilow) 189 Int imin, jmin, ilow, jlow; local 217 ilow = xpos + ((comp & 1) << 3) - range; 220 if (imin <= -15 || imin == ilow)
|
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; local 809 ilow = i0 - range; 810 if (ilow < -15) 811 ilow = -15; 824 ilow = i0 - range; 825 if (ilow < 0) 826 ilow = 0; 847 dmin = fullsearch(video, currVol, ref, cur, &imin, &jmin, ilow, ihigh, jlow, jhigh) [all...] |
/frameworks/av/media/libstagefright/codecs/avc/enc/src/ |
motion_est.cpp | 974 int i, j, imin, jmin, ilow, ihigh, jlow, jhigh; local 1012 ilow = i0 - range; 1013 if (i0 - ilow > 2047) /* clip to conform with the standard */ 1015 ilow = i0 - 2047; 1017 if (ilow < -13) // change it from -15 to -13 because of 6-tap filter needs extra 2 lines. 1019 ilow = -13; [all...] |
avcenc_lib.h | 566 \param "ilow, ihigh, jlow, jhigh" "Lower bound on search range." 572 int *imin, int *jmin, int ilow, int ihigh, int jlow, int jhigh, [all...] |