diff options
author | Michael Niedermayer <michael@niedermayer.cc> | 2016-02-14 15:22:47 +0100 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2016-02-14 21:30:32 +0100 |
commit | 0eb4092c1bf4d74c3b9a65fb0dbe4f90d3a316d0 (patch) | |
tree | 6d9c80e39d152bc9f601ea8985b30274f29566d0 /libavutil/version.h | |
parent | 8352f5c807582faeceb2427ef53e4f3aaf487263 (diff) | |
download | ffmpeg-0eb4092c1bf4d74c3b9a65fb0dbe4f90d3a316d0.tar.gz |
avutil/imgutils: remove special case for aligning the palette
This was suggested by wm4 and stefano.
After this patch using align=1 the size used by various functions would not
contain padding, while the palette would be aligned at align>1
This patch makes it required to use align>=4 if the palette is to be accessed
as uint32
As a side-effect It fixes storing pal8 in nut with odd with&height
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
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 aa7d9137a7..0ea8c79467 100644 --- a/libavutil/version.h +++ b/libavutil/version.h @@ -65,7 +65,7 @@ #define LIBAVUTIL_VERSION_MAJOR 55 #define LIBAVUTIL_VERSION_MINOR 17 -#define LIBAVUTIL_VERSION_MICRO 102 +#define LIBAVUTIL_VERSION_MICRO 103 #define LIBAVUTIL_VERSION_INT AV_VERSION_INT(LIBAVUTIL_VERSION_MAJOR, \ LIBAVUTIL_VERSION_MINOR, \ |