From 8afaa03c53d6de7c18c2578bd0d6733c759eff57 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Thu, 6 Nov 2014 14:52:18 +0100 Subject: avformat/riffenc: move MP3 LSF threshold to the midway point between the 2 No testcase available but this seems more correct Signed-off-by: Michael Niedermayer --- libavformat/riffenc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavformat') diff --git a/libavformat/riffenc.c b/libavformat/riffenc.c index c670d303a6..5e858008f5 100644 --- a/libavformat/riffenc.c +++ b/libavformat/riffenc.c @@ -105,7 +105,7 @@ int ff_put_wav_header(AVIOContext *pb, AVCodecContext *enc, int flags) if (enc->codec_id == AV_CODEC_ID_MP2) { blkalign = frame_size; } else if (enc->codec_id == AV_CODEC_ID_MP3) { - blkalign = 576 * (enc->sample_rate <= 24000 ? 1 : 2); + blkalign = 576 * (enc->sample_rate <= (24000 + 32000)/2 ? 1 : 2); } else if (enc->codec_id == AV_CODEC_ID_AC3) { blkalign = 3840; /* maximum bytes per frame */ } else if (enc->codec_id == AV_CODEC_ID_AAC) { -- cgit v1.2.3