diff options
author | Samuel Pitoiset <samuel.pitoiset@gmail.com> | 2012-05-25 12:32:39 +0200 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2012-05-26 14:31:44 +0300 |
commit | 154486f9adc621e620dacd76d78c30a02cc1dcd3 (patch) | |
tree | db2b9327943ceb6a69ae26bb502d0690db9d3cdf /libavutil/avutil.h | |
parent | a1a6cdc26e465fc65e641ab31ef47d263b624568 (diff) | |
download | ffmpeg-154486f9adc621e620dacd76d78c30a02cc1dcd3.tar.gz |
opt: Add av_opt_set_bin()
Introduce a new function to set binary data through AVOption,
avoiding having to convert the binary data to a string inbetween.
Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavutil/avutil.h')
-rw-r--r-- | libavutil/avutil.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavutil/avutil.h b/libavutil/avutil.h index 3e51357ae6..1c8e0767df 100644 --- a/libavutil/avutil.h +++ b/libavutil/avutil.h @@ -152,7 +152,7 @@ */ #define LIBAVUTIL_VERSION_MAJOR 51 -#define LIBAVUTIL_VERSION_MINOR 30 +#define LIBAVUTIL_VERSION_MINOR 31 #define LIBAVUTIL_VERSION_MICRO 0 #define LIBAVUTIL_VERSION_INT AV_VERSION_INT(LIBAVUTIL_VERSION_MAJOR, \ |