]> code.delx.au - pulseaudio/commitdiff
minor stuff
authorLennart Poettering <lennart@poettering.net>
Fri, 17 Sep 2004 23:45:28 +0000 (23:45 +0000)
committerLennart Poettering <lennart@poettering.net>
Fri, 17 Sep 2004 23:45:28 +0000 (23:45 +0000)
git-svn-id: file:///home/lennart/svn/public/pulseaudio/trunk@217 fefdeb5f-60dc-0310-8127-8f9354f1896f

doc/todo
polyp/client-conf.c
polyp/daemon.conf.in
polyp/polyplib-context.c

index 53d4ca56b04b333a2ec45730db2f3fd07186f148..300f8d0a93492c49ac1d596692c66952ac434a3c 100644 (file)
--- a/doc/todo
+++ b/doc/todo
@@ -2,7 +2,6 @@
 
 *** 0.5 ***
 - more complete pactl/parec
-- fix tcp/native in regard to latencies (i.e. latency interpolation)
 
 *** 0.6 ****
 - per-channel volume
@@ -12,6 +11,7 @@
 - make mcalign merge chunks
 - option to use default fragment size on alsa drivers
 - improve module-oss-mmap latency measurement
+- new mainloop method: defer_pending()
 
 ** later ***
 - xmlrpc/http
index c43788fe59a9eece46cec1981dce500f219a6da3..efaae837d28ba23b6fe59778e2411b4ec192bf2b 100644 (file)
@@ -43,7 +43,6 @@
 #define ENV_DEFAULT_SERVER "POLYP_SERVER"
 #define ENV_DAEMON_BINARY "POLYP_BINARY"
 
-
 static const struct pa_client_conf default_conf = {
     .daemon_binary = NULL,
     .extra_arguments = NULL,
index a277bb4fd464cf1e98275e46517382e571f9c8a0..e6d82db178958b59df9deadb3d9c8cf85abf70ef 100644 (file)
@@ -34,7 +34,7 @@
 ## playback. However, this is a certain security issue, since it works 
 ## when called SUID root only. root is dropped immediately after gaining
 ## the nice level and SCHED_FIFO scheduling on startup.
-high-priority = 0
+high-priority = 0
 
 ## Disallow module loading after startup
 ; disallow-module-loading = 0
@@ -44,7 +44,7 @@ high-priority = 0
 ; exit-idle-time = -1
 
 ## Unload autoloaded modules after being idle for this time 
-module-idle-time = 20
+module-idle-time = 20
 
 ## The path were to look for dynamic shared objects (DSOs aka
 ## plugins).  You may specify more than one path seperated by
index 8f6ce6a8ce8436f2f4ea7bf8350a83cd792545db..8a7c719c2425430ec49187941495efe3798de322 100644 (file)
@@ -500,7 +500,8 @@ int pa_context_connect(struct pa_context *c, const char *server, int spawn, cons
     if (!server && spawn && c->conf->autospawn && !default_server_is_running())
         return context_connect_spawn(c, api);
 
-    server = DEFAULT_SERVER;
+    if (!server)
+        server = DEFAULT_SERVER;
 
     pa_context_ref(c);