mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
lavc/libmp3lame: add comments about CBR/VBR modes
Signed-off-by: Timothy Gu <timothygu99@gmail.com> Signed-off-by: Stefano Sabatini <stefasab@gmail.com>
This commit is contained in:
parent
683d9cb1f2
commit
07e7bc9cbd
@ -115,11 +115,11 @@ static av_cold int mp3lame_encode_init(AVCodecContext *avctx)
|
||||
lame_set_quality(s->gfp, avctx->compression_level);
|
||||
|
||||
/* rate control */
|
||||
if (avctx->flags & CODEC_FLAG_QSCALE) {
|
||||
if (avctx->flags & CODEC_FLAG_QSCALE) { // VBR
|
||||
lame_set_VBR(s->gfp, vbr_default);
|
||||
lame_set_VBR_quality(s->gfp, avctx->global_quality / (float)FF_QP2LAMBDA);
|
||||
} else {
|
||||
if (avctx->bit_rate)
|
||||
if (avctx->bit_rate) // CBR
|
||||
lame_set_brate(s->gfp, avctx->bit_rate / 1000);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user