1
mirror of https://git.videolan.org/git/ffmpeg.git synced 2024-10-01 00:54:33 +02:00

vorbisenc: set AVCodecContext.bit_rate to 0

The Vorbis encoder is always VBR.
This commit is contained in:
Justin Ruggles 2012-08-20 13:35:48 -04:00
parent 890fddd0ea
commit a0a5fed908

View File

@ -1180,6 +1180,7 @@ static av_cold int vorbis_encode_init(AVCodecContext *avccontext)
if ((ret = create_vorbis_context(venc, avccontext)) < 0)
goto error;
avccontext->bit_rate = 0;
if (avccontext->flags & CODEC_FLAG_QSCALE)
venc->quality = avccontext->global_quality / (float)FF_QP2LAMBDA;
else