mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-26 19:01:44 +02: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