~ubuntu-branches/ubuntu/jaunty/pulseaudio/jaunty-updates

« back to all changes in this revision

Viewing changes to src/pulsecore/core.c

  • Committer: Bazaar Package Importer
  • Author(s): Daniel T Chen
  • Date: 2007-12-04 00:56:08 UTC
  • mto: This revision was merged to the branch mainline in revision 15.
  • Revision ID: james.westby@ubuntu.com-20071204005608-3lzrrrpxi186kgx4
Tags: upstream-0.9.8
ImportĀ upstreamĀ versionĀ 0.9.8

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* $Id: core.c 1973 2007-10-29 08:34:30Z lennart $ */
 
1
/* $Id: core.c 2067 2007-11-21 01:30:40Z lennart $ */
2
2
 
3
3
/***
4
4
  This file is part of PulseAudio.
107
107
    c->scache = NULL;
108
108
    c->autoload_idxset = NULL;
109
109
    c->autoload_hashmap = NULL;
110
 
    c->running_as_daemon = 0;
 
110
    c->running_as_daemon = FALSE;
111
111
 
112
112
    c->default_sample_spec.format = PA_SAMPLE_S16NE;
113
113
    c->default_sample_spec.rate = 44100;
134
134
 
135
135
    c->resample_method = PA_RESAMPLER_SPEEX_FLOAT_BASE + 3;
136
136
 
137
 
    c->is_system_instance = 0;
138
 
    c->disallow_module_loading = 0;
139
 
    c->high_priority = 0;
140
 
 
 
137
    c->is_system_instance = FALSE;
 
138
    c->disallow_module_loading = FALSE;
 
139
    c->realtime_scheduling = FALSE;
 
140
    c->realtime_priority = 5;
 
141
    c->disable_remixing = FALSE;
141
142
 
142
143
    for (j = 0; j < PA_CORE_HOOK_MAX; j++)
143
144
        pa_hook_init(&c->hooks[j], c);
217
218
        c->quit_event = NULL;
218
219
    }
219
220
}
220