[FFmpeg-devel] [PATCH] avutil: expand the size of LINE_SZ to 2048.

Stephen Hutchinson qyot27 at gmail.com
Wed Aug 7 02:55:49 CEST 2013


It's possible to make FFMPEG_CONFIGURATION exceed the 1024 limit,
causing a cosmetic issue when invoking the ff* binaries. 2048
should be more than enough to fit it comfortably.
---
 libavutil/log.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavutil/log.c b/libavutil/log.c
index 29ad2d0..9ad6875 100644
--- a/libavutil/log.c
+++ b/libavutil/log.c
@@ -39,7 +39,7 @@
 #include "internal.h"
 #include "log.h"
 
-#define LINE_SZ 1024
+#define LINE_SZ 2048
 
 static int av_log_level = AV_LOG_INFO;
 static int flags;
-- 
1.8.1.2



More information about the ffmpeg-devel mailing list