diff options
author | Anton Khirnov <anton@khirnov.net> | 2017-02-08 09:46:04 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2017-02-11 11:37:45 +0100 |
commit | 4de220d2e3751c459f8739a08ac6ca52e63eba30 (patch) | |
tree | 099e9902726a41b8f0dd7d39fa66d6874c79cc4c /libavutil/version.h | |
parent | f44ec22e095c5ba00ffeadd891655c456e3dd014 (diff) | |
download | ffmpeg-4de220d2e3751c459f8739a08ac6ca52e63eba30.tar.gz |
frame: allow align=0 (meaning automatic) for av_frame_get_buffer()
This will avoid every caller from hardcoding some specific alignment,
which may break in the future with new instruction sets.
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 0fcd19a1eb..0768f9fe99 100644 --- a/libavutil/version.h +++ b/libavutil/version.h @@ -55,7 +55,7 @@ #define LIBAVUTIL_VERSION_MAJOR 55 #define LIBAVUTIL_VERSION_MINOR 31 -#define LIBAVUTIL_VERSION_MICRO 0 +#define LIBAVUTIL_VERSION_MICRO 1 #define LIBAVUTIL_VERSION_INT AV_VERSION_INT(LIBAVUTIL_VERSION_MAJOR, \ LIBAVUTIL_VERSION_MINOR, \ |