Commit 1159c36d authored by Clément Bœsch's avatar Clément Bœsch

avfilter/paletteuse: remove redundant alpha condition

This is redundant with a != 0xff below.
parent 4c061bc8
......@@ -599,7 +599,6 @@ DECLARE_CMP_FUNC(b, 2)
static const cmp_func cmp_funcs[] = {cmp_r, cmp_g, cmp_b};
static int get_next_color(const uint8_t *color_used, const uint32_t *palette,
const int trans_thresh,
int *component, const struct color_rect *box)
{
int wr, wg, wb;
......@@ -619,10 +618,6 @@ static int get_next_color(const uint8_t *color_used, const uint32_t *palette,
const uint8_t g = c >> 8 & 0xff;
const uint8_t b = c & 0xff;
if (a < trans_thresh) {
continue;
}
if (color_used[i] || (a != 0xff) ||
r < box->min[0] || g < box->min[1] || b < box->min[2] ||
r > box->max[0] || g > box->max[1] || b > box->max[2])
......@@ -674,7 +669,7 @@ static int colormap_insert(struct color_node *map,
int node_left_id = -1, node_right_id = -1;
struct color_node *node;
struct color_rect box1, box2;
const int pal_id = get_next_color(color_used, palette, trans_thresh, &component, box);
const int pal_id = get_next_color(color_used, palette, &component, box);
if (pal_id < 0)
return -1;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment