diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2007-10-09 01:12:27 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2007-10-09 01:12:27 +0000 |
commit | ec627278182ba434fe244011cad11b58abd7a1a3 (patch) | |
tree | c6c3e38804e7bb769af0d0f4e169b57a554192a0 /libavformat/flvenc.c | |
parent | 4838727ea060b96775fdf0594c694b58076d993e (diff) | |
download | ffmpeg-ec627278182ba434fe244011cad11b58abd7a1a3.tar.gz |
indent
Originally committed as revision 10693 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/flvenc.c')
-rw-r--r-- | libavformat/flvenc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/flvenc.c b/libavformat/flvenc.c index 171395d28a..3a5f5ec180 100644 --- a/libavformat/flvenc.c +++ b/libavformat/flvenc.c @@ -67,8 +67,8 @@ static int get_audio_flags(AVCodecContext *enc){ case 8000: //nellymoser only case 5512: //not mp3 if(enc->codec_id != CODEC_ID_MP3){ - flags |= FLV_SAMPLERATE_SPECIAL; - break; + 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"); |