diff options
author | Anton Khirnov <anton@khirnov.net> | 2011-09-01 10:17:09 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2011-09-01 10:37:19 +0200 |
commit | 9bc9188e5873083bfb35c91688a229ae3d45ff4f (patch) | |
tree | 0e4e38093975e13832297dfb5077d49ba6b525c2 | |
parent | bea5670a4f5e47a39edf18abbfafa2760e1d7132 (diff) | |
download | ffmpeg-9bc9188e5873083bfb35c91688a229ae3d45ff4f.tar.gz |
libmp3lame: fix typo
FF_API_LAME_GLOBAL_OPTIONS => FF_API_LAME_GLOBAL_OPTS
Thanks to Clément Bœsch for spotting.
-rw-r--r-- | libavcodec/libmp3lame.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/libmp3lame.c b/libavcodec/libmp3lame.c index b46ce42fb0..f9d4277c9d 100644 --- a/libavcodec/libmp3lame.c +++ b/libavcodec/libmp3lame.c @@ -68,7 +68,7 @@ static av_cold int MP3lame_encode_init(AVCodecContext *avctx) lame_set_VBR_quality(s->gfp, avctx->global_quality/(float)FF_QP2LAMBDA); } lame_set_bWriteVbrTag(s->gfp,0); -#if FF_API_LAME_GLOBAL_OPTIONS +#if FF_API_LAME_GLOBAL_OPTS s->reservoir = avctx->flags2 & CODEC_FLAG2_BIT_RESERVOIR; #endif lame_set_disable_reservoir(s->gfp, !s->reservoir); |