Browse code

lavfi: increase number of maximum registered filters from 64 to 128

Stefano Sabatini authored on 2011/11/03 06:10:32
Showing 1 changed files
... ...
@@ -687,7 +687,7 @@ void avfilter_filter_samples(AVFilterLink *link, AVFilterBufferRef *samplesref)
687 687
     filter_samples(link, link->cur_buf);
688 688
 }
689 689
 
690
-#define MAX_REGISTERED_AVFILTERS_NB 64
690
+#define MAX_REGISTERED_AVFILTERS_NB 128
691 691
 
692 692
 static AVFilter *registered_avfilters[MAX_REGISTERED_AVFILTERS_NB + 1];
693 693