diff options
author | Pierre Ossman <ossman@cendio.se> | 2006-05-17 06:31:18 +0000 |
---|---|---|
committer | Pierre Ossman <ossman@cendio.se> | 2006-05-17 06:31:18 +0000 |
commit | 05c14685203b5ced74bfec0e6a3b3aa3f8721c51 (patch) | |
tree | be6809b1fe2161af00f52a8fdf60c599cb1e8642 /src | |
parent | 4b6ab291a787ff597c938842b569a35434ab11d8 (diff) |
Use default channel map for Solaris module. There doesn't seem to be a standard
for > 2 channels, so we'll have to rely on the user.
git-svn-id: file:///home/lennart/svn/public/pulseaudio/trunk@889 fefdeb5f-60dc-0310-8127-8f9354f1896f
Diffstat (limited to 'src')
-rw-r--r-- | src/modules/module-solaris.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/module-solaris.c b/src/modules/module-solaris.c index eaac9e6e..3e7c2fb4 100644 --- a/src/modules/module-solaris.c +++ b/src/modules/module-solaris.c @@ -525,7 +525,7 @@ int pa__init(pa_core *c, pa_module*m) { } ss = c->default_sample_spec; - if (pa_modargs_get_sample_spec_and_channel_map(ma, &ss, &map) < 0) { + if (pa_modargs_get_sample_spec_and_channel_map(ma, &ss, &map, PA_CHANNEL_MAP_DEFAULT) < 0) { pa_log(__FILE__": failed to parse sample specification"); goto fail; } |