diff options
author | Wonkap Jang <wonkap-at-google.com@ffmpeg.org> | 2020-02-10 10:30:09 -0800 |
---|---|---|
committer | James Zern <jzern@google.com> | 2020-02-11 11:55:36 -0800 |
commit | f3bb59209f255aa0376937edbee48c2ac7782dc6 (patch) | |
tree | fb7c80d627bd897b1e3139e7175e6d538b238a86 /libavcodec/version.h | |
parent | cf92f42672b1d696e0a17dbb9cda56b6a80c1466 (diff) | |
download | ffmpeg-f3bb59209f255aa0376937edbee48c2ac7782dc6.tar.gz |
avcodec/libvpxenc: add a way to explicitly set temporal layer id
In order for rate control to correctly allocate bitrate to each temporal
layer, correct temporal layer id has to be set to each frame. This
commit provides the ability to set correct temporal layer id for each
frame.
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 bc6630ea42..6bf2a05145 100644 --- a/libavcodec/version.h +++ b/libavcodec/version.h @@ -29,7 +29,7 @@ #define LIBAVCODEC_VERSION_MAJOR 58 #define LIBAVCODEC_VERSION_MINOR 68 -#define LIBAVCODEC_VERSION_MICRO 101 +#define LIBAVCODEC_VERSION_MICRO 102 #define LIBAVCODEC_VERSION_INT AV_VERSION_INT(LIBAVCODEC_VERSION_MAJOR, \ LIBAVCODEC_VERSION_MINOR, \ |