Commit 8baa1d22 authored by Michael Niedermayer's avatar Michael Niedermayer

avfilter/vf_paletteuse: enable skip_initial_unpaired

Fixes crash due to unprocessed input being passed through

This fixes the last segfault caused by mixing 3.0 and 3.1 libs and
applications
Signed-off-by: 's avatarMichael Niedermayer <michael@niedermayer.cc>
parent f1dabc95
...@@ -1003,6 +1003,7 @@ static av_cold int init(AVFilterContext *ctx) ...@@ -1003,6 +1003,7 @@ static av_cold int init(AVFilterContext *ctx)
{ {
PaletteUseContext *s = ctx->priv; PaletteUseContext *s = ctx->priv;
s->dinput.repeatlast = 1; // only 1 frame in the palette s->dinput.repeatlast = 1; // only 1 frame in the palette
s->dinput.skip_initial_unpaired = 1;
s->dinput.process = load_apply_palette; s->dinput.process = load_apply_palette;
s->set_frame = set_frame_lut[s->color_search_method][s->dither]; s->set_frame = set_frame_lut[s->color_search_method][s->dither];
......
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