diff options
author | Vittorio Giovara <vittorio.giovara@gmail.com> | 2014-04-07 16:25:23 +0200 |
---|---|---|
committer | Vittorio Giovara <vittorio.giovara@gmail.com> | 2014-04-07 23:50:33 +0200 |
commit | 46439e156219d27f059cf687743ba5aacf238b87 (patch) | |
tree | 83877e3f4f378978a6641344c812053440694fdd | |
parent | 718907cd881a0b593264aed059c0e00da13f9e15 (diff) | |
download | ffmpeg-46439e156219d27f059cf687743ba5aacf238b87.tar.gz |
mp2: match twolame default options
-rw-r--r-- | libavcodec/mpegaudioenc.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/mpegaudioenc.c b/libavcodec/mpegaudioenc.c index a940c0d689..3a5cdca38a 100644 --- a/libavcodec/mpegaudioenc.c +++ b/libavcodec/mpegaudioenc.c @@ -743,7 +743,8 @@ static int MPA_encode_frame(AVCodecContext *avctx, AVPacket *avpkt, } static const AVCodecDefault mp2_defaults[] = { - { "b", "128k" }, + { "b", "384000" }, + { "ar", "48000" }, { NULL }, }; |