diff --git a/doc/APIchanges b/doc/APIchanges index 730d5a6c9e007961c3acd1cca560e801c5896df4..6e7fbc13d5cce4a438bbe63272a0aa422cad57ac 100644 --- a/doc/APIchanges +++ b/doc/APIchanges @@ -13,6 +13,9 @@ libavutil: 2009-03-08 API changes, most recent first: +2010-11-13 - r25739 - lavfi 1.62.0 - avfiltergraph.h + Make avfiltergraph.h public. + 2010-11-13 - r25737 - lavfi 1.61.0 - avfiltergraph.h Remove declarations from avfiltergraph.h for the functions: avfilter_graph_check_validity() diff --git a/libavfilter/Makefile b/libavfilter/Makefile index f5465b25d5259ca36864bf1e511c87acb4093d19..254d4dbee17bf5532bc6c4b008ae85b040269691 100644 --- a/libavfilter/Makefile +++ b/libavfilter/Makefile @@ -4,7 +4,7 @@ NAME = avfilter FFLIBS = avcodec avcore avutil FFLIBS-$(CONFIG_SCALE_FILTER) += swscale -HEADERS = avfilter.h +HEADERS = avfilter.h avfiltergraph.h OBJS = allfilters.o \ avfilter.o \ diff --git a/libavfilter/avfilter.h b/libavfilter/avfilter.h index 8ed2cef41de0a939f224879477a56952a3e3e18a..5021fa0b39b3c44daf065a50957ab5ce9083b70b 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 61 +#define LIBAVFILTER_VERSION_MINOR 62 #define LIBAVFILTER_VERSION_MICRO 0 #define LIBAVFILTER_VERSION_INT AV_VERSION_INT(LIBAVFILTER_VERSION_MAJOR, \