summaryrefslogtreecommitdiffstats
path: root/src/pulsecore/core.c
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2007-11-01 02:58:26 +0000
committerLennart Poettering <lennart@poettering.net>2007-11-01 02:58:26 +0000
commit7bfd1b2f01613dd14b9ca478ae530c1641aa46a1 (patch)
tree522566023e14a643afae3600d1b72b2865afebfa /src/pulsecore/core.c
parent641d1fa96485f7a258ad958c4031e655767808a8 (diff)
make rtprio and nice level actually configurable
git-svn-id: file:///home/lennart/svn/public/pulseaudio/trunk@2014 fefdeb5f-60dc-0310-8127-8f9354f1896f
Diffstat (limited to 'src/pulsecore/core.c')
-rw-r--r--src/pulsecore/core.c11
1 files changed, 5 insertions, 6 deletions
diff --git a/src/pulsecore/core.c b/src/pulsecore/core.c
index e67f15b5..9b420c94 100644
--- a/src/pulsecore/core.c
+++ b/src/pulsecore/core.c
@@ -107,7 +107,7 @@ pa_core* pa_core_new(pa_mainloop_api *m, int shared) {
c->scache = NULL;
c->autoload_idxset = NULL;
c->autoload_hashmap = NULL;
- c->running_as_daemon = 0;
+ c->running_as_daemon = FALSE;
c->default_sample_spec.format = PA_SAMPLE_S16NE;
c->default_sample_spec.rate = 44100;
@@ -134,10 +134,10 @@ pa_core* pa_core_new(pa_mainloop_api *m, int shared) {
c->resample_method = PA_RESAMPLER_SPEEX_FLOAT_BASE + 3;
- c->is_system_instance = 0;
- c->disallow_module_loading = 0;
- c->high_priority = 0;
-
+ c->is_system_instance = FALSE;
+ c->disallow_module_loading = FALSE;
+ c->realtime_scheduling = FALSE;
+ c->realtime_priority = 5;
for (j = 0; j < PA_CORE_HOOK_MAX; j++)
pa_hook_init(&c->hooks[j], c);
@@ -217,4 +217,3 @@ void pa_core_check_quit(pa_core *c) {
c->quit_event = NULL;
}
}
-