diff options
author | Mark Thompson <sw@jkqxz.net> | 2017-03-04 23:57:40 +0000 |
---|---|---|
committer | Mark Thompson <sw@jkqxz.net> | 2017-04-30 17:33:18 +0100 |
commit | c5714b51aad41fef56dddac1d542e7fc6b984627 (patch) | |
tree | 36b79528a6d02075880423c820246178cbc26de9 /libavutil/version.h | |
parent | e1c5d56b18b82e3fb42382b1b1f972e8b371fc38 (diff) | |
download | ffmpeg-c5714b51aad41fef56dddac1d542e7fc6b984627.tar.gz |
hwcontext: Improve allocation in derived contexts
Use the flags argument of av_hwframe_ctx_create_derived() to pass the
mapping flags which will be used on allocation. Also, set the format
and hardware context on the allocated frame automatically - the user
should not be required to do this themselves.
Diffstat (limited to 'libavutil/version.h')
-rw-r--r-- | libavutil/version.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavutil/version.h b/libavutil/version.h index fd72ff431d..7779755870 100644 --- a/libavutil/version.h +++ b/libavutil/version.h @@ -55,7 +55,7 @@ #define LIBAVUTIL_VERSION_MAJOR 56 #define LIBAVUTIL_VERSION_MINOR 1 -#define LIBAVUTIL_VERSION_MICRO 0 +#define LIBAVUTIL_VERSION_MICRO 1 #define LIBAVUTIL_VERSION_INT AV_VERSION_INT(LIBAVUTIL_VERSION_MAJOR, \ LIBAVUTIL_VERSION_MINOR, \ |