diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2011-06-11 11:41:49 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2011-09-28 08:02:53 +0200 |
commit | 57fa314090ab006808911fd790053b534749aa53 (patch) | |
tree | 5f26b4a0857cd180163098e4d6aca9b83b1be7eb /libavfilter/avfilter.h | |
parent | 64abd375ec0219dca1bd918eca7793f71fcd9a3a (diff) | |
download | ffmpeg-57fa314090ab006808911fd790053b534749aa53.tar.gz |
lavfi: fix signature for avfilter_graph_parse() and avfilter_graph_config()
Require "void *" rather than "AVClass *" for the log context type.
Signed-off-by: Anton Khirnov <anton@khirnov.net>
Diffstat (limited to 'libavfilter/avfilter.h')
-rw-r--r-- | libavfilter/avfilter.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/avfilter.h b/libavfilter/avfilter.h index b9af1c4773..ee42585d6d 100644 --- a/libavfilter/avfilter.h +++ b/libavfilter/avfilter.h @@ -30,7 +30,7 @@ #define LIBAVFILTER_VERSION_MAJOR 2 #define LIBAVFILTER_VERSION_MINOR 7 -#define LIBAVFILTER_VERSION_MICRO 0 +#define LIBAVFILTER_VERSION_MICRO 1 #define LIBAVFILTER_VERSION_INT AV_VERSION_INT(LIBAVFILTER_VERSION_MAJOR, \ LIBAVFILTER_VERSION_MINOR, \ |