[SCM] libav/experimental: Make the nb_max_connections and nb_connections int variables unsigned.

siretart at users.alioth.debian.org siretart at users.alioth.debian.org
Sun Jun 30 16:29:24 UTC 2013


The following commit has been merged in the experimental branch:
commit 4af92de6f6e9111a178ae5d6b0a641cf5a1d1f40
Author: Stefano Sabatini <stefano.sabatini-lala at poste.it>
Date:   Wed Sep 3 20:10:32 2008 +0000

    Make the nb_max_connections and nb_connections int variables unsigned.
    
    Originally committed as revision 15191 to svn://svn.ffmpeg.org/ffmpeg/trunk

diff --git a/ffserver.c b/ffserver.c
index f7d00ea..f6898e5 100644
--- a/ffserver.c
+++ b/ffserver.c
@@ -294,8 +294,8 @@ static int need_to_start_children;
 
 /* maximum number of simultaneous HTTP connections */
 static unsigned int nb_max_http_connections = 2000;
-static int nb_max_connections = 5;
-static int nb_connections;
+static unsigned int nb_max_connections = 5;
+static unsigned int nb_connections;
 
 static uint64_t max_bandwidth = 1000;
 static uint64_t current_bandwidth;

-- 
Libav/FFmpeg packaging



More information about the pkg-multimedia-commits mailing list