[SCM] libav/experimental: http: Use a constant for the supported header size

siretart at users.alioth.debian.org siretart at users.alioth.debian.org
Sun Aug 10 16:03:59 UTC 2014


The following commit has been merged in the experimental branch:
commit 7bdd2ff6825951f7a6a6008303acfce7c2a63532
Author: Luca Barbato <lu_zero at gentoo.org>
Date:   Tue Jul 22 16:37:09 2014 +0200

    http: Use a constant for the supported header size

diff --git a/libavformat/http.c b/libavformat/http.c
index 6c390e8..d7f6029 100644
--- a/libavformat/http.c
+++ b/libavformat/http.c
@@ -529,7 +529,7 @@ static int http_connect(URLContext *h, const char *path, const char *local_path,
 {
     HTTPContext *s = h->priv_data;
     int post, err;
-    char headers[1024] = "";
+    char headers[HTTP_HEADERS_SIZE] = "";
     char *authstr = NULL, *proxyauthstr = NULL;
     int64_t off = s->off;
     int len = 0;
diff --git a/libavformat/http.h b/libavformat/http.h
index f0d9d4a..3d301a7 100644
--- a/libavformat/http.h
+++ b/libavformat/http.h
@@ -24,6 +24,8 @@
 
 #include "url.h"
 
+#define HTTP_HEADERS_SIZE 1024
+
 /**
  * Initialize the authentication state based on another HTTP URLContext.
  * This can be used to pre-initialize the authentication parameters if

-- 
Libav/FFmpeg packaging



More information about the pkg-multimedia-commits mailing list