[FFmpeg-devel] [PATCH v1 08/11] lavf/icecast: Replace magic number by micro for bprint init

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


Replace magic number by micro for bprint init.

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

diff --git a/libavformat/icecast.c b/libavformat/icecast.c
index 02e3e38..c93b06b 100644
--- a/libavformat/icecast.c
+++ b/libavformat/icecast.c
@@ -96,7 +96,7 @@ static int icecast_open(URLContext *h, const char *uri, int flags)
     if (flags & AVIO_FLAG_READ)
         return AVERROR(ENOSYS);
 
-    av_bprint_init(&bp, 0, 1);
+    av_bprint_init(&bp, 0, AV_BPRINT_SIZE_AUTOMATIC);
 
     // Build header strings
     cat_header(&bp, "Ice-Name", s->name);
-- 
2.7.4



More information about the ffmpeg-devel mailing list