[FFmpeg-cvslog] r18198 - in trunk/libavfilter: avfilter.c avfilter.h
victor
subversion
Thu Mar 26 22:46:45 CET 2009
Author: victor
Date: Thu Mar 26 22:46:45 2009
New Revision: 18198
Log:
Make static the list of registered filters.
Modified:
trunk/libavfilter/avfilter.c
trunk/libavfilter/avfilter.h
Modified: trunk/libavfilter/avfilter.c
==============================================================================
--- trunk/libavfilter/avfilter.c Thu Mar 26 18:16:11 2009 (r18197)
+++ trunk/libavfilter/avfilter.c Thu Mar 26 22:46:45 2009 (r18198)
@@ -27,7 +27,7 @@ unsigned avfilter_version(void) {
}
/** list of registered filters */
-struct FilterList
+static struct FilterList
{
AVFilter *filter;
struct FilterList *next;
Modified: trunk/libavfilter/avfilter.h
==============================================================================
--- trunk/libavfilter/avfilter.h Thu Mar 26 18:16:11 2009 (r18197)
+++ trunk/libavfilter/avfilter.h Thu Mar 26 22:46:45 2009 (r18198)
@@ -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, \
More information about the ffmpeg-cvslog
mailing list