summaryrefslogtreecommitdiff
path: root/libavcodec/libaomenc.c
diff options
context:
space:
mode:
authorJames Almer <jamrial@gmail.com>2018-11-26 19:05:50 -0300
committerJames Almer <jamrial@gmail.com>2018-11-26 19:08:45 -0300
commit2ddaaaf59570533f6c58b67d39c1d7af41d12d1c (patch)
tree7638c8c7e8303be05362d22f6cc9e2561a7bce7f /libavcodec/libaomenc.c
parent90ac0e5f29ba4730cd92d3268938b3730823e52b (diff)
avcodec/libaomenc: increase the default bitrate
aom_codec_enc_config_default() sets it to 256kbps, so don't replace it with 200kbps. See https://bugs.chromium.org/p/aomedia/issues/detail?id=2219 Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavcodec/libaomenc.c')
-rw-r--r--libavcodec/libaomenc.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/libaomenc.c b/libavcodec/libaomenc.c
index 4cad053a48..cb31c55825 100644
--- a/libavcodec/libaomenc.c
+++ b/libavcodec/libaomenc.c
@@ -986,6 +986,7 @@ static const AVOption options[] = {
};
static const AVCodecDefault defaults[] = {
+ { "b", "256*1000" },
{ "qmin", "-1" },
{ "qmax", "-1" },
{ "g", "-1" },