diff options
author | Stefano Sabatini <stefasab@gmail.com> | 2011-09-17 03:17:06 +0200 |
---|---|---|
committer | Stefano Sabatini <stefasab@gmail.com> | 2011-09-18 12:38:33 +0200 |
commit | e72aa524d894e03ac13f549c3f9ee67bc6928dbc (patch) | |
tree | cd5f932ea362f1b3e7ec4b689e1bc8b7c0905db7 /libavfilter/avfilter.h | |
parent | 44ab77db9efaa41f968b9e90aa8b58e9d416a48a (diff) | |
download | ffmpeg-e72aa524d894e03ac13f549c3f9ee67bc6928dbc.tar.gz |
asrc_anullsrc: implement a request_frame callback for returning frames
This is mainly useful for filters (like the sox synth), which
overwrite the content of the passed data.
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 9857c0fb45..0c675f8d16 100644 --- a/libavfilter/avfilter.h +++ b/libavfilter/avfilter.h @@ -30,7 +30,7 @@ #define LIBAVFILTER_VERSION_MAJOR 2 #define LIBAVFILTER_VERSION_MINOR 43 -#define LIBAVFILTER_VERSION_MICRO 1 +#define LIBAVFILTER_VERSION_MICRO 2 #define LIBAVFILTER_VERSION_INT AV_VERSION_INT(LIBAVFILTER_VERSION_MAJOR, \ LIBAVFILTER_VERSION_MINOR, \ |