diff mbox

[FFmpeg-devel,1/4] avformat/mpegenc - fix typo in VBV warning

Message ID 294338e6-be38-88aa-7add-1b2f7ce84eab@gmail.com
State Accepted
Commit b99e77b9f7b9df53aa59f9cc4b41572453a55513
Headers show

Commit Message

Gyan Jan. 29, 2018, 7:09 a.m. UTC
Changes to MPEG-PS muxer factored as requested in
http://www.ffmpeg.org/pipermail/ffmpeg-devel/2018-January/224642.html.
From a2349faf6cc3002c73840907bc440257bd078ccd Mon Sep 17 00:00:00 2001
From: Gyan Doshi <gyandoshi@gmail.com>
Date: Mon, 29 Jan 2018 11:53:36 +0530
Subject: [PATCH 1/4] avformat/mpegenc - fix typo in VBV warning

Default VBV buffer size is 230KB, not 130KB.
---
 libavformat/mpegenc.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Gyan Jan. 29, 2018, 7:10 a.m. UTC | #1
Changes to MPEG-PS muxer factored as requested in
http://www.ffmpeg.org/pipermail/ffmpeg-devel/2018-January/224642.html
Michael Niedermayer Jan. 30, 2018, 12:36 a.m. UTC | #2
On Mon, Jan 29, 2018 at 12:40:30PM +0530, Gyan Doshi wrote:
> Changes to MPEG-PS muxer factored as requested in
> http://www.ffmpeg.org/pipermail/ffmpeg-devel/2018-January/224642.html

was this mail intended to contain a patch ?
it seems it does not ...

[...]
Michael Niedermayer Jan. 30, 2018, 3:51 a.m. UTC | #3
On Mon, Jan 29, 2018 at 12:39:08PM +0530, Gyan Doshi wrote:
> Changes to MPEG-PS muxer factored as requested in
> http://www.ffmpeg.org/pipermail/ffmpeg-devel/2018-January/224642.html.

>  mpegenc.c |    2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 8e1d73e5fbfa2dcbbf79c0295907aad719180d5d  0001-avformat-mpegenc-fix-typo-in-VBV-warning.patch
> From a2349faf6cc3002c73840907bc440257bd078ccd Mon Sep 17 00:00:00 2001
> From: Gyan Doshi <gyandoshi@gmail.com>
> Date: Mon, 29 Jan 2018 11:53:36 +0530
> Subject: [PATCH 1/4] avformat/mpegenc - fix typo in VBV warning
> 
> Default VBV buffer size is 230KB, not 130KB.
> ---
>  libavformat/mpegenc.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

will apply
thanks

[...]
diff mbox

Patch

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