summaryrefslogtreecommitdiff
path: root/libavfilter
diff options
context:
space:
mode:
authorStefano Sabatini <stefasab@gmail.com>2011-11-02 22:10:32 +0100
committerStefano Sabatini <stefasab@gmail.com>2011-11-05 02:13:37 +0100
commit1fc7077115eb97c4eeeb4ca732cab7e963b3f26f (patch)
tree2e421bb91db4cc04c624fcecba9fb69e72a7a912 /libavfilter
parent217790871e7d8f2e9690fbe785d29683e7f9ab23 (diff)
lavfi: increase number of maximum registered filters from 64 to 128
Diffstat (limited to 'libavfilter')
-rw-r--r--libavfilter/avfilter.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/avfilter.c b/libavfilter/avfilter.c
index d5f0c4b901..fa316a670c 100644
--- a/libavfilter/avfilter.c
+++ b/libavfilter/avfilter.c
@@ -687,7 +687,7 @@ void avfilter_filter_samples(AVFilterLink *link, AVFilterBufferRef *samplesref)
filter_samples(link, link->cur_buf);
}
-#define MAX_REGISTERED_AVFILTERS_NB 64
+#define MAX_REGISTERED_AVFILTERS_NB 128
static AVFilter *registered_avfilters[MAX_REGISTERED_AVFILTERS_NB + 1];