Searched refs:cost (Results 1 - 3 of 3) sorted by relevance

/frameworks/av/media/libstagefright/codecs/avc/enc/src/
H A Dintra_est.cpp435 int cost; local
441 cost = cost_i16(orgY, org_pitch, encvid->pred_i16[AVC_I16_Vertical], *min_cost);
442 if (cost < *min_cost)
444 *min_cost = cost;
455 cost = cost_i16(orgY, org_pitch, encvid->pred_i16[AVC_I16_Horizontal], *min_cost);
456 if (cost < *min_cost)
458 *min_cost = cost;
466 cost = cost_i16(orgY, org_pitch, encvid->pred_i16[AVC_I16_DC], *min_cost);
467 if (cost < *min_cost)
469 *min_cost = cost;
495 int cost; local
639 int cost = 0; local
731 uint16 min_cost, cost; local
1289 cost_i4(uint8 *org, int org_pitch, uint8 *pred, uint16 *cost) argument
1389 int cost, mincost; local
1727 int cost; local
[all...]
H A Dfindhalfpel.cpp84 // find cost for the current full-pel position
610 int cost; local
614 cost = AVCSAD_Macroblock_C(cand, cur, dmin, NULL);
616 return cost;
H A Davcenc_lib.h45 \param "coef_cost" "Pointer to the coefficient cost to be filled in and returned."
295 \param "min_cost" "Best inter cost."
323 This function calculate the cost of all I16 modes and compare them to get the minimum.
326 \param "min_cost" "Pointer to the minimal cost so-far."
332 This function calculates the cost of each I16 mode.
336 \param "min_cost" "Minimal cost so-far."
347 \param "min_cost" "Pointer to the minimal cost so-far."
368 \return "Minimal cost, also set currMB->i4Mode"
373 This function calculates the cost of a given I4 prediction mode.
377 \param "cost" "Pointe
[all...]

Completed in 65 milliseconds