Commit fd0b57e1 authored by stefano's avatar stefano

Add a description field to AVFilterContext.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@20354 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 411e4fa2
......@@ -23,8 +23,8 @@
#define AVFILTER_AVFILTER_H
#define LIBAVFILTER_VERSION_MAJOR 1
#define LIBAVFILTER_VERSION_MINOR 3
#define LIBAVFILTER_VERSION_MICRO 1
#define LIBAVFILTER_VERSION_MINOR 4
#define LIBAVFILTER_VERSION_MICRO 0
#define LIBAVFILTER_VERSION_INT AV_VERSION_INT(LIBAVFILTER_VERSION_MAJOR, \
LIBAVFILTER_VERSION_MINOR, \
......@@ -426,6 +426,12 @@ struct AVFilterContext
AVFilterLink **outputs; ///< array of pointers to output links
void *priv; ///< private data for use by the filter
/**
* A description for the filter. You should use the
* NULL_IF_CONFIG_SMALL() macro to define it.
*/
const char *description;
};
/**
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment