Commit e47114d5 authored by Stefano Sabatini's avatar Stefano Sabatini

lavfi: increment max number of registered filters from 128 to 256

The total number of implemented filters is already over 128.
parent a842dc63
......@@ -391,7 +391,7 @@ int avfilter_process_command(AVFilterContext *filter, const char *cmd, const cha
return AVERROR(ENOSYS);
}
#define MAX_REGISTERED_AVFILTERS_NB 128
#define MAX_REGISTERED_AVFILTERS_NB 256
static AVFilter *registered_avfilters[MAX_REGISTERED_AVFILTERS_NB + 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