mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-01-03 21:42:09 +00:00
lavfi: increment max number of registered filters from 128 to 256
The total number of implemented filters is already over 128.
This commit is contained in:
parent
a842dc632e
commit
e47114d545
@ -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];
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user