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

  /external/libaom/libaom/av1/encoder/
palette.c 47 int bits_cost = bit_depth; local
48 if (num == 1) return bits_cost;
49 bits_cost += 2;
63 bits_cost += bits_per_delta;
67 return bits_cost;
encodemv.c 87 int bits_cost[MV_OFFSET_BITS][2]; local
95 av1_cost_tokens_from_cdf(bits_cost[i], mvcomp->bits_cdf[i], NULL);
119 for (i = 0; i < b; ++i) cost += bits_cost[i][((d >> i) & 1)];
  /external/libvpx/libvpx/vp9/encoder/
vp9_encodemv.c 73 int bits_cost[MV_OFFSET_BITS][2]; local
84 bits_cost[i][0] = vp9_cost_zero(mvcomp->bits[i]);
85 bits_cost[i][1] = vp9_cost_one(mvcomp->bits[i]);
121 for (i = 0; i < b; ++i) whole_cost += bits_cost[i][((d >> i) & 1)];

Completed in 732 milliseconds