mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
avformat/mpegenc - fix typo in VBV warning
Default VBV buffer size is 230KB, not 130KB. Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
0cc3d830d1
commit
b99e77b9f7
@ -397,7 +397,7 @@ static av_cold int mpeg_mux_init(AVFormatContext *ctx)
|
||||
stream->max_buffer_size = 6 * 1024 + props->buffer_size / 8;
|
||||
else {
|
||||
av_log(ctx, AV_LOG_WARNING,
|
||||
"VBV buffer size not set, using default size of 130KB\n"
|
||||
"VBV buffer size not set, using default size of 230KB\n"
|
||||
"If you want the mpeg file to be compliant to some specification\n"
|
||||
"Like DVD, VCD or others, make sure you set the correct buffer size\n");
|
||||
// FIXME: this is probably too small as default
|
||||
|
Loading…
Reference in New Issue
Block a user