diff options
author | Guo, Yejun <yejun.guo@intel.com> | 2019-09-12 18:25:21 +0800 |
---|---|---|
committer | James Zern <jzern@google.com> | 2019-09-19 23:49:28 -0700 |
commit | ecd026a48d63166d97f074f072d36ade1b5d270b (patch) | |
tree | 9500f3151ec3c9acd7cce162f53fcf742ae6d914 /libavcodec/version.h | |
parent | 179e15dc976510993ba28d7e41559d257b53aff6 (diff) | |
download | ffmpeg-ecd026a48d63166d97f074f072d36ade1b5d270b.tar.gz |
avcodec/libvpxenc: add ROI-based encoding support for VP8/VP9
example command line to verify it:
./ffmpeg -i input.stream -vf addroi=0:0:iw/3:ih/3:-0.8 -c:v libvpx -b:v 2M tmp.webm
Signed-off-by: Guo, Yejun <yejun.guo@intel.com>
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 bef8dfba38..59d5758e1f 100644 --- a/libavcodec/version.h +++ b/libavcodec/version.h @@ -29,7 +29,7 @@ #define LIBAVCODEC_VERSION_MAJOR 58 #define LIBAVCODEC_VERSION_MINOR 58 -#define LIBAVCODEC_VERSION_MICRO 100 +#define LIBAVCODEC_VERSION_MICRO 101 #define LIBAVCODEC_VERSION_INT AV_VERSION_INT(LIBAVCODEC_VERSION_MAJOR, \ LIBAVCODEC_VERSION_MINOR, \ |