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

  /external/libvpx/libvpx/vp9/encoder/
vp9_tokenize.c 55 // e.g. {9, 63} maps to cat5_cost[63 >> 1], {1, 1} maps to sign_cost[1 >> 1]
91 static const int16_t sign_cost[1] = { 512 }; variable
262 { 0, 0, 1, sign_cost }, // ONE_TOKEN
263 { 0, 0, 2, sign_cost }, // TWO_TOKEN
264 { 0, 0, 3, sign_cost }, // THREE_TOKEN
265 { 0, 0, 4, sign_cost }, // FOUR_TOKEN
278 { 0, 0, 1, sign_cost }, // ONE
279 { 0, 0, 2, sign_cost }, // TWO
280 { 0, 0, 3, sign_cost }, // THREE
281 { 0, 0, 4, sign_cost }, // FOU
    [all...]
vp9_encodemv.c 72 int sign_cost[2], class_cost[MV_CLASSES], class0_cost[CLASS0_SIZE]; local
79 sign_cost[0] = vp9_cost_zero(mvcomp->sign);
80 sign_cost[1] = vp9_cost_one(mvcomp->sign);
112 mvcost[v] = cost + sign_cost[0];
113 mvcost[-v] = cost + sign_cost[1];
126 mvcost[v] = cost + hp_cost[0] + sign_cost[0];
127 mvcost[-v] = cost + hp_cost[0] + sign_cost[1];
129 mvcost[v + 1] = cost + hp_cost[1] + sign_cost[0];
130 mvcost[-v - 1] = cost + hp_cost[1] + sign_cost[1];
132 mvcost[v] = cost + sign_cost[0]
    [all...]

Completed in 349 milliseconds