mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-06-29 04:17:06 +08:00
- Bug fix on output sample rate for lame MP3 encoding.
Originally committed as revision 327 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
@ -42,6 +42,7 @@ static int MP3lame_encode_init(AVCodecContext *avctx)
|
||||
if ((s->gfp = lame_init()) == NULL)
|
||||
goto err;
|
||||
lame_set_in_samplerate(s->gfp, avctx->sample_rate);
|
||||
lame_set_out_samplerate(s->gfp, avctx->sample_rate);
|
||||
lame_set_num_channels(s->gfp, avctx->channels);
|
||||
/* lame 3.91 dies on quality != 5 */
|
||||
lame_set_quality(s->gfp, 5);
|
||||
|
Reference in New Issue
Block a user