diff options
author | Jérémy Tran <tran.jeremy.av@gmail.com> | 2012-08-31 01:56:58 +0200 |
---|---|---|
committer | Stefano Sabatini <stefasab@gmail.com> | 2012-08-31 18:09:30 +0200 |
commit | 54ca7e39dae120fefe96d30e965a304b63a1b491 (patch) | |
tree | 0e4721500d9cbfed3412f5126e41ec1e087793f9 /libavfilter/version.h | |
parent | fa838a0c0f42246623c4501c6b197e16ee9713b4 (diff) | |
download | ffmpeg-54ca7e39dae120fefe96d30e965a304b63a1b491.tar.gz |
lavfi/hue: add process_command callback
This allows dynamic reconfiguration of the filter.
The callback uses some code that was in the init function. Hence this code
has been moved in its own function.
Signed-off-by: Stefano Sabatini <stefasab@gmail.com>
Diffstat (limited to 'libavfilter/version.h')
-rw-r--r-- | libavfilter/version.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/version.h b/libavfilter/version.h index a216d9cd3a..6a25d820dc 100644 --- a/libavfilter/version.h +++ b/libavfilter/version.h @@ -30,7 +30,7 @@ #define LIBAVFILTER_VERSION_MAJOR 3 #define LIBAVFILTER_VERSION_MINOR 15 -#define LIBAVFILTER_VERSION_MICRO 100 +#define LIBAVFILTER_VERSION_MICRO 101 #define LIBAVFILTER_VERSION_INT AV_VERSION_INT(LIBAVFILTER_VERSION_MAJOR, \ LIBAVFILTER_VERSION_MINOR, \ |