diff options
author | elliottk <elliottk-at-google.com@ffmpeg.org> | 2019-09-24 16:24:13 -0700 |
---|---|---|
committer | James Zern <jzern@google.com> | 2019-10-07 22:32:32 -0700 |
commit | 14941d386acd90b92aaaf75fbdac2c07d33f167a (patch) | |
tree | 80e48bc3feaf30507e110f8bde836f32bba7f7c7 /libavcodec/version.h | |
parent | 8df91de9aa263df77bd3f59a65355a1ccca83f0c (diff) | |
download | ffmpeg-14941d386acd90b92aaaf75fbdac2c07d33f167a.tar.gz |
Change libvpxenc default to crf=32.
Current default is 200kbps, which produces inconsistent
results (too high for low-res, too low for hi-res). Use
CRF instead, which will adapt. Affects VP9. Also have
VP8 use a default bitrate of 256kbps.
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 04b210371e..2e047a6f51 100644 --- a/libavcodec/version.h +++ b/libavcodec/version.h @@ -29,7 +29,7 @@ #define LIBAVCODEC_VERSION_MAJOR 58 #define LIBAVCODEC_VERSION_MINOR 59 -#define LIBAVCODEC_VERSION_MICRO 101 +#define LIBAVCODEC_VERSION_MICRO 102 #define LIBAVCODEC_VERSION_INT AV_VERSION_INT(LIBAVCODEC_VERSION_MAJOR, \ LIBAVCODEC_VERSION_MINOR, \ |