Home | History | Annotate | Download | only in dec

Lines Matching refs:num_colors

1216 // the total possible bundled values, and not just the num_colors.
1217 static int ExpandColorMap(int num_colors, VP8LTransform* const transform) {
1229 for (i = 4; i < 4 * num_colors; ++i) {
1274 const int num_colors = VP8LReadBits(br, 8) + 1;
1275 const int bits = (num_colors > 16) ? 0
1276 : (num_colors > 4) ? 1
1277 : (num_colors > 2) ? 2
1281 ok = DecodeImageStream(num_colors, 1, 0, dec, &transform->data_);
1282 ok = ok && ExpandColorMap(num_colors, transform);