documentation update

git-svn-id: file:///home/lennart/svn/public/pulseaudio/trunk@225 fefdeb5f-60dc-0310-8127-8f9354f1896f
This commit is contained in:
Lennart Poettering 2004-09-20 20:52:35 +00:00
parent bb31eda806
commit 2d87bd2d2f
8 changed files with 160 additions and 68 deletions

View file

@ -1,4 +1,4 @@
#!./polypaudio -rnF
#!./polypaudio -nF
#
# This file is part of polypaudio.
@ -28,12 +28,12 @@ load-module module-oss device="/dev/dsp" sink_name=output source_name=input reco
# Load audio drivers automatically on access
#add-autoload_sink output module-oss device="/dev/dsp" sink_name=output source_name=input
#add-autoload_source input module-oss device="/dev/dsp" sink_name=output source_name=input
#add-autoload_sink output module-oss-mmap device="/dev/dsp" sink_name=output source_name=input
#add-autoload_source input module-oss-mmap device="/dev/dsp" sink_name=output source_name=input
#add-autoload_sink output module-alsa-sink sink_name=output
#add-autoload_source input module-alsa-source source_name=input
#add-autoload-sink output module-oss device="/dev/dsp" sink_name=output source_name=input
#add-autoload-source input module-oss device="/dev/dsp" sink_name=output source_name=input
#add-autoload-sink output module-oss-mmap device="/dev/dsp" sink_name=output source_name=input
#add-autoload-source input module-oss-mmap device="/dev/dsp" sink_name=output source_name=input
#add-autoload-sink output module-alsa-sink sink_name=output
#add-autoload-source input module-alsa-source source_name=input
# Load several protocols
load-module module-esound-protocol-tcp

View file

@ -180,12 +180,14 @@ int main(int argc, char *argv[]) {
retval = 1;
}
if (conf->verbose)
pa_log(__FILE__": daemon startup %s.\n", retval ? "failed" : "succeeded");
goto finish;
}
close(daemon_pipe[0]);
daemon_pipe[0] = -1;
if (conf->auto_log_target)
pa_log_set_target(PA_LOG_SYSLOG, NULL);

View file

@ -40,7 +40,7 @@
PA_MODULE_AUTHOR("Lennart Poettering")
PA_MODULE_DESCRIPTION("Combine multiple sinks to one")
PA_MODULE_VERSION(PACKAGE_VERSION)
PA_MODULE_USAGE("sink_name=<name for the sink> master=<master sink> slave=<slave sinks> adjust_time=<seconds> resample_method=<method>")
PA_MODULE_USAGE("sink_name=<name for the sink> master=<master sink> slaves=<slave sinks> adjust_time=<seconds> resample_method=<method>")
#define DEFAULT_SINK_NAME "combined"
#define MEMBLOCKQ_MAXLENGTH (1024*170)