diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2010-04-28 20:00:23 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2010-04-28 20:00:23 +0000 |
commit | 2308b6c19a74c0b1af58c12ab379976b54bc83a2 (patch) | |
tree | 01c228ac7cac4cd32b96462741469a70ed64f087 /libavfilter | |
parent | b01dba14f36aa3ff3d6fe89acf71eddbd65e7027 (diff) | |
download | ffmpeg-2308b6c19a74c0b1af58c12ab379976b54bc83a2.tar.gz |
Add version to AVClass so we can add to and use fields of AVClass without ABI issues.
Originally committed as revision 22987 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavfilter')
-rw-r--r-- | libavfilter/avfilter.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libavfilter/avfilter.c b/libavfilter/avfilter.c index feba3d9c75..3ed59d7cc2 100644 --- a/libavfilter/avfilter.c +++ b/libavfilter/avfilter.c @@ -385,7 +385,9 @@ static const char *filter_name(void *p) static const AVClass avfilter_class = { "AVFilter", - filter_name + filter_name, + NULL, + LIBAVUTIL_VERSION_INT, }; AVFilterContext *avfilter_open(AVFilter *filter, const char *inst_name) |