diff options
author | Philip Langdale <philipl@overt.org> | 2020-12-07 16:33:29 -0800 |
---|---|---|
committer | Philip Langdale <philipl@overt.org> | 2020-12-08 15:31:39 -0800 |
commit | 40135829b613f875ce71c2cc2265e74ccc6b4c71 (patch) | |
tree | 5ed55c7cb8e89ac1b8f21b7558f7451db32faa3f /libavcodec/version.h | |
parent | 0dac317ba31cd10e9df26722ac96adc3f6ef3eb3 (diff) | |
download | ffmpeg-40135829b613f875ce71c2cc2265e74ccc6b4c71.tar.gz |
avcodec/libaom: Support monochrome encoding with libaom >= 2.0.1
Monochrome encoding with libaom was buggy for a long time, but this was
finally sorted out in libaom 2.0.1 (2.0.0 is almost there but was still
buggy in realtime mode).
We'll keep support for libaom 1.x around until the LTS distros that
include it are EOL (which is still a long time from now).
Fixes: https://trac.ffmpeg.org/ticket/7599
Diffstat (limited to 'libavcodec/version.h')
-rw-r--r-- | libavcodec/version.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/version.h b/libavcodec/version.h index 1c10d105f6..5b92afe60a 100644 --- a/libavcodec/version.h +++ b/libavcodec/version.h @@ -29,7 +29,7 @@ #define LIBAVCODEC_VERSION_MAJOR 58 #define LIBAVCODEC_VERSION_MINOR 115 -#define LIBAVCODEC_VERSION_MICRO 101 +#define LIBAVCODEC_VERSION_MICRO 102 #define LIBAVCODEC_VERSION_INT AV_VERSION_INT(LIBAVCODEC_VERSION_MAJOR, \ LIBAVCODEC_VERSION_MINOR, \ |