From b6fec3eb7f9ddfda25202eb272900ffdeeb753b3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADctor=20Paesa?= Date: Thu, 26 Mar 2009 21:46:45 +0000 Subject: [PATCH] Make static the list of registered filters. Originally committed as revision 18198 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavfilter/avfilter.c | 2 +- libavfilter/avfilter.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/libavfilter/avfilter.c b/libavfilter/avfilter.c index 1dbc01622b..349d0af0ee 100644 --- a/libavfilter/avfilter.c +++ b/libavfilter/avfilter.c @@ -27,7 +27,7 @@ unsigned avfilter_version(void) { } /** list of registered filters */ -struct FilterList +static struct FilterList { AVFilter *filter; struct FilterList *next; diff --git a/libavfilter/avfilter.h b/libavfilter/avfilter.h index 9f455bb447..c8b40072b3 100644 --- a/libavfilter/avfilter.h +++ b/libavfilter/avfilter.h @@ -23,7 +23,7 @@ #define AVFILTER_AVFILTER_H #define LIBAVFILTER_VERSION_MAJOR 0 -#define LIBAVFILTER_VERSION_MINOR 4 +#define LIBAVFILTER_VERSION_MINOR 5 #define LIBAVFILTER_VERSION_MICRO 0 #define LIBAVFILTER_VERSION_INT AV_VERSION_INT(LIBAVFILTER_VERSION_MAJOR, \