Skip to content

Instantly share code, notes, and snippets.

@justinruggles
Created September 1, 2012 03:20
Show Gist options
  • Save justinruggles/3563237 to your computer and use it in GitHub Desktop.
Save justinruggles/3563237 to your computer and use it in GitHub Desktop.
From 8965967b510ce7a6f86abbc4e3b9a16f7f02ff49 Mon Sep 17 00:00:00 2001
From: Justin Ruggles <[email protected]>
Date: Fri, 31 Aug 2012 22:57:12 -0400
Subject: [PATCH 6/6] lavfi: increase MAX_REGISTERED_AVFILTERS_NB to 128
---
libavfilter/avfilter.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/libavfilter/avfilter.c b/libavfilter/avfilter.c
index 77b3633..b6a417d 100644
--- a/libavfilter/avfilter.c
+++ b/libavfilter/avfilter.c
@@ -261,7 +261,7 @@ int ff_poll_frame(AVFilterLink *link)
return min;
}
-#define MAX_REGISTERED_AVFILTERS_NB 64
+#define MAX_REGISTERED_AVFILTERS_NB 128
static AVFilter *registered_avfilters[MAX_REGISTERED_AVFILTERS_NB + 1];
--
1.7.1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment