[FFmpeg-devel] [PATCH v1 02/11] fftools/ffmpeg: Replace magic number by micro for bprint init

Jun Zhao mypopydev at gmail.com
Sun Jun 10 12:16:51 EEST 2018


Replace magic number by micro for bprint init.

Signed-off-by: Jun Zhao <mypopydev at gmail.com>
---
 fftools/ffmpeg.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fftools/ffmpeg.c b/fftools/ffmpeg.c
index d4ac690..73616b9 100644
--- a/fftools/ffmpeg.c
+++ b/fftools/ffmpeg.c
@@ -1689,7 +1689,7 @@ static void print_report(int is_last_report, int64_t timer_start, int64_t cur_ti
 
     vid = 0;
     av_bprint_init(&buf, 0, AV_BPRINT_SIZE_AUTOMATIC);
-    av_bprint_init(&buf_script, 0, 1);
+    av_bprint_init(&buf_script, 0, AV_BPRINT_SIZE_AUTOMATIC);
     for (i = 0; i < nb_output_streams; i++) {
         float q = -1;
         ost = output_streams[i];
-- 
2.7.4



More information about the ffmpeg-devel mailing list