From: Stefano Sabatini Date: Wed, 25 Nov 2009 23:24:09 +0000 (+0000) Subject: Remove AVFilter.next field, since it is not used and it is not going X-Git-Tag: v0.6~2572 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4cc3f6afe4773ec026f7b288e502f1992e2c4020;p=platform%2Fupstream%2Flibav.git Remove AVFilter.next field, since it is not used and it is not going to be used since the implementation of the new filter registration system. Originally committed as revision 20611 to svn://svn.ffmpeg.org/ffmpeg/trunk --- diff --git a/libavfilter/avfilter.h b/libavfilter/avfilter.h index f08f7b0..1fb783d 100644 --- a/libavfilter/avfilter.h +++ b/libavfilter/avfilter.h @@ -25,7 +25,7 @@ #include "libavutil/avutil.h" #define LIBAVFILTER_VERSION_MAJOR 1 -#define LIBAVFILTER_VERSION_MINOR 10 +#define LIBAVFILTER_VERSION_MINOR 11 #define LIBAVFILTER_VERSION_MICRO 0 #define LIBAVFILTER_VERSION_INT AV_VERSION_INT(LIBAVFILTER_VERSION_MAJOR, \ @@ -425,11 +425,6 @@ typedef struct AVFilter * NULL_IF_CONFIG_SMALL() macro to define it. */ const char *description; - - /** - * The next registered filter, NULL if this is the last one. - */ - struct AVFilter *next; } AVFilter; /** An instance of a filter */