diff options
author | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2016-03-07 11:59:36 +0100 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2016-03-07 11:59:36 +0100 |
commit | 0ba844a053da5e409a36a8159adb16aea5b5dd71 (patch) | |
tree | 2da0db914fa61350f2f17ebc1b92f31a15e2f3d4 /libavfilter/version.h | |
parent | b872b98bb4666ee4f23b3e9a47d0f6085c0c1b3a (diff) | |
download | ffmpeg-0ba844a053da5e409a36a8159adb16aea5b5dd71.tar.gz |
lavfi/extractplanes: Fix in_pixfmts.
If the original pix_fmt was >8 bit and not supported by the filter,
the filter system could choose a pix_fmt with different endianness
as input for extractplanes which broke the output because the output
always used the endianness of the original pix_fmt.
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 2cfba6b438..3d9cb891c9 100644 --- a/libavfilter/version.h +++ b/libavfilter/version.h @@ -31,7 +31,7 @@ #define LIBAVFILTER_VERSION_MAJOR 6 #define LIBAVFILTER_VERSION_MINOR 39 -#define LIBAVFILTER_VERSION_MICRO 100 +#define LIBAVFILTER_VERSION_MICRO 101 #define LIBAVFILTER_VERSION_INT AV_VERSION_INT(LIBAVFILTER_VERSION_MAJOR, \ LIBAVFILTER_VERSION_MINOR, \ |