[FFmpeg-cvslog] lavfi: increment max number of registered filters from 128 to 256

Stefano Sabatini git at videolan.org
Thu Jan 31 16:57:54 CET 2013


ffmpeg | branch: master | Stefano Sabatini <stefasab at gmail.com> | Thu Jan 31 16:47:37 2013 +0100| [e47114d5459adfe6153dc56c9a35ad9983b33bce] | committer: Stefano Sabatini

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

The total number of implemented filters is already over 128.

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=e47114d5459adfe6153dc56c9a35ad9983b33bce
---

 libavfilter/avfilter.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavfilter/avfilter.c b/libavfilter/avfilter.c
index 4759d13..7c0bee6 100644
--- a/libavfilter/avfilter.c
+++ b/libavfilter/avfilter.c
@@ -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];
 



More information about the ffmpeg-cvslog mailing list