diff options
author | Aaron Thompson <dev@aaront.org> | 2024-05-16 06:10:36 +0000 |
---|---|---|
committer | James Zern <jzern@google.com> | 2024-05-17 15:40:31 -0700 |
commit | be3404bbacae5a046e1b3e66a98810b4b7564249 (patch) | |
tree | 1577ab2e0a84838bed244239ac6fa75671ce9591 /libavcodec/version.h | |
parent | 727a603158b466a3f11f419012856e845a0721b9 (diff) | |
download | ffmpeg-be3404bbacae5a046e1b3e66a98810b4b7564249.tar.gz |
lavc/libvpxenc: Fix parsing of ts_layering_mode parameter
The value was being parsed as base 4, so the value "4" was invalid and
would result in ts_layering_mode being set to 0.
Signed-off-by: Aaron Thompson <dev@aaront.org>
Signed-off-by: James Zern <jzern@google.com>
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 f0958eee14..3d2de546b3 100644 --- a/libavcodec/version.h +++ b/libavcodec/version.h @@ -30,7 +30,7 @@ #include "version_major.h" #define LIBAVCODEC_VERSION_MINOR 5 -#define LIBAVCODEC_VERSION_MICRO 103 +#define LIBAVCODEC_VERSION_MICRO 104 #define LIBAVCODEC_VERSION_INT AV_VERSION_INT(LIBAVCODEC_VERSION_MAJOR, \ LIBAVCODEC_VERSION_MINOR, \ |