HomeSort by relevance Sort by last modified time
    Searched refs:SBE (Results 1 - 2 of 2) sorted by null

  /frameworks/base/media/libstagefright/codecs/avc/enc/src/
motion_est.cpp 191 int temp, SBE;
195 SBE = 0;
201 SBE += ((temp >= 0) ? temp : -temp);
211 SBE += ((temp >= 0) ? temp : -temp);
214 /* compare mincost/384 and SBE/64 */
215 ABE = SBE / 32.0; //ABE = SBE/64.0; //
224 *min_cost = (*min_cost + (int)(SBE * 8)) >> 1; // possibility of intra, averaging the cost
228 *min_cost = (int)(SBE * 8);
    [all...]
intra_est.cpp 42 int temp, SBE, offset;
51 SBE = 0;
61 SBE += ((temp >= 0) ? temp : -temp);
63 SBE += ((temp >= 0) ? temp : -temp);
77 SBE += ((temp >= 0) ? temp : -temp);
79 SBE += ((temp >= 0) ? temp : -temp);
91 SBE += ((temp >= 0) ? temp : -temp);
93 SBE += ((temp >= 0) ? temp : -temp);
96 /* compare mincost/384 and SBE/64 */
97 ABE = SBE / 64.0
    [all...]

Completed in 26 milliseconds