Searched refs:out_cache_colors (Results 1 – 3 of 3) sorted by relevance
/external/libaom/libaom/av1/encoder/ |
D | palette.c | 72 uint8_t *cache_color_found, int *out_cache_colors) { in av1_index_color_cache() argument 74 for (int i = 0; i < n_colors; ++i) out_cache_colors[i] = colors[i]; in av1_index_color_cache() 93 if (!in_cache_flags[i]) out_cache_colors[j++] = colors[i]; in av1_index_color_cache() 121 int out_cache_colors[PALETTE_MAX_SIZE]; in av1_palette_color_cost_y() local 125 cache_color_found, out_cache_colors); in av1_palette_color_cost_y() 127 n_cache + delta_encode_cost(out_cache_colors, n_out_cache, bit_depth, 1); in av1_palette_color_cost_y() 137 int out_cache_colors[PALETTE_MAX_SIZE]; in av1_palette_color_cost_uv() local 141 cache_color_found, out_cache_colors); in av1_palette_color_cost_uv() 143 n_cache + delta_encode_cost(out_cache_colors, n_out_cache, bit_depth, 0); in av1_palette_color_cost_uv()
|
D | palette.h | 76 uint8_t *cache_color_found, int *out_cache_colors);
|
D | bitstream.c | 674 int out_cache_colors[PALETTE_MAX_SIZE]; in write_palette_colors_y() local 678 cache_color_found, out_cache_colors); in write_palette_colors_y() 686 delta_encode_palette_colors(out_cache_colors, n_out_cache, bit_depth, 1, w); in write_palette_colors_y() 701 int out_cache_colors[PALETTE_MAX_SIZE]; in write_palette_colors_uv() local 704 color_cache, n_cache, colors_u, n, cache_color_found, out_cache_colors); in write_palette_colors_uv() 711 delta_encode_palette_colors(out_cache_colors, n_out_cache, bit_depth, 0, w); in write_palette_colors_uv()
|