mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2025-02-17 18:38:13 +00:00
vorbisenc: set quality to a reasonable default.
Fixed Ticket847 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
fdffaa6b11
commit
0f6f5e6f16
@ -1164,7 +1164,7 @@ static av_cold int vorbis_encode_init(AVCodecContext *avccontext)
|
||||
if (avccontext->flags & CODEC_FLAG_QSCALE)
|
||||
venc->quality = avccontext->global_quality / (float)FF_QP2LAMBDA / 10.;
|
||||
else
|
||||
venc->quality = 0.03;
|
||||
venc->quality = 8;
|
||||
venc->quality *= venc->quality;
|
||||
|
||||
if ((ret = put_main_header(venc, (uint8_t**)&avccontext->extradata)) < 0)
|
||||
|
Loading…
x
Reference in New Issue
Block a user