summaryrefslogtreecommitdiff
path: root/libavfilter/avfilter.h
diff options
context:
space:
mode:
authorStefano Sabatini <stefano.sabatini-lala@poste.it>2009-11-25 23:24:09 +0000
committerStefano Sabatini <stefano.sabatini-lala@poste.it>2009-11-25 23:24:09 +0000
commit4cc3f6afe4773ec026f7b288e502f1992e2c4020 (patch)
treebc3fd8a94f8224a3cc05b4ac7de6077547e16592 /libavfilter/avfilter.h
parentf2526204a40ed2ea49c0023cb561f05cccfe4196 (diff)
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
Diffstat (limited to 'libavfilter/avfilter.h')
-rw-r--r--libavfilter/avfilter.h7
1 files changed, 1 insertions, 6 deletions
diff --git a/libavfilter/avfilter.h b/libavfilter/avfilter.h
index f08f7b0a29..1fb783de08 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 */