From 4838727ea060b96775fdf0594c694b58076d993e Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Tue, 9 Oct 2007 01:01:07 +0000 Subject: avoid generating invalid files fixes issue213 Originally committed as revision 10692 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/flvenc.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libavformat/flvenc.c b/libavformat/flvenc.c index d4ef51d5d3..171395d28a 100644 --- a/libavformat/flvenc.c +++ b/libavformat/flvenc.c @@ -66,8 +66,10 @@ static int get_audio_flags(AVCodecContext *enc){ break; case 8000: //nellymoser only case 5512: //not mp3 + if(enc->codec_id != CODEC_ID_MP3){ flags |= FLV_SAMPLERATE_SPECIAL; break; + } default: av_log(enc, AV_LOG_ERROR, "flv does not support that sample rate, choose from (44100, 22050, 11025).\n"); return -1; -- cgit v1.2.3