diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2010-10-08 15:41:41 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2010-10-08 15:41:41 +0000 |
commit | d03b93e37213010f3f31dd89d69ebe129d182304 (patch) | |
tree | 4de4290e90a9b8da701c523cedaf6cec744a222f /libavformat/mpegenc.c | |
parent | 011071e717ac1c6f752a5d0dfa39edd142a0e738 (diff) | |
download | ffmpeg-d03b93e37213010f3f31dd89d69ebe129d182304.tar.gz |
Add a space between the else and { in mpegenc.c in the line i added.
Originally committed as revision 25414 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/mpegenc.c')
-rw-r--r-- | libavformat/mpegenc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/mpegenc.c b/libavformat/mpegenc.c index 9580ca2433..affc801b4a 100644 --- a/libavformat/mpegenc.c +++ b/libavformat/mpegenc.c @@ -367,7 +367,7 @@ static int mpeg_mux_init(AVFormatContext *ctx) stream->id = mpv_id++; if (st->codec->rc_buffer_size) stream->max_buffer_size = 6*1024 + st->codec->rc_buffer_size/8; - else{ + else { av_log(ctx, AV_LOG_WARNING, "VBV buffer size not set, muxing may fail\n"); stream->max_buffer_size = 230*1024; //FIXME this is probably too small as default } |