[SCM] libav/experimental: Make static the list of registered filters.

siretart at users.alioth.debian.org siretart at users.alioth.debian.org
Sun Jun 30 16:42:39 UTC 2013


The following commit has been merged in the experimental branch:
commit b6fec3eb7f9ddfda25202eb272900ffdeeb753b3
Author: Víctor Paesa <victorpaesa at googlemail.com>
Date:   Thu Mar 26 21:46:45 2009 +0000

    Make static the list of registered filters.
    
    Originally committed as revision 18198 to svn://svn.ffmpeg.org/ffmpeg/trunk

diff --git a/libavfilter/avfilter.c b/libavfilter/avfilter.c
index 1dbc016..349d0af 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 9f455bb..c8b4007 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, \

-- 
Libav/FFmpeg packaging



More information about the pkg-multimedia-commits mailing list