[FFmpeg-cvslog] avformat/mpegenc - fix typo in VBV warning
Gyan Doshi
git at videolan.org
Tue Jan 30 06:29:02 EET 2018
ffmpeg | branch: master | Gyan Doshi <gyandoshi at gmail.com> | Mon Jan 29 12:11:36 2018 +0530| [b99e77b9f7b9df53aa59f9cc4b41572453a55513] | committer: Michael Niedermayer
avformat/mpegenc - fix typo in VBV warning
Default VBV buffer size is 230KB, not 130KB.
Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=b99e77b9f7b9df53aa59f9cc4b41572453a55513
---
libavformat/mpegenc.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavformat/mpegenc.c b/libavformat/mpegenc.c
index c77c3dfe41..695de3f081 100644
--- a/libavformat/mpegenc.c
+++ b/libavformat/mpegenc.c
@@ -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
More information about the ffmpeg-cvslog
mailing list