OSDN Git Service

Make static the list of registered filters.
authorVíctor Paesa <victorpaesa@googlemail.com>
Thu, 26 Mar 2009 21:46:45 +0000 (21:46 +0000)
committerVíctor Paesa <victorpaesa@googlemail.com>
Thu, 26 Mar 2009 21:46:45 +0000 (21:46 +0000)
Originally committed as revision 18198 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavfilter/avfilter.c
libavfilter/avfilter.h

index 1dbc016..349d0af 100644 (file)
@@ -27,7 +27,7 @@ unsigned avfilter_version(void) {
 }
 
 /** list of registered filters */
-struct FilterList
+static struct FilterList
 {
     AVFilter *filter;
     struct FilterList *next;
index 9f455bb..c8b4007 100644 (file)
@@ -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, \