2004-07-16 19:56:36 +00:00
|
|
|
/***
|
2006-06-19 21:53:48 +00:00
|
|
|
This file is part of PulseAudio.
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2008-05-15 23:34:41 +00:00
|
|
|
Copyright 2004-2008 Lennart Poettering
|
2007-02-13 15:35:19 +00:00
|
|
|
Copyright 2006 Pierre Ossman <ossman@cendio.se> for Cendio AB
|
|
|
|
|
|
2006-06-19 21:53:48 +00:00
|
|
|
PulseAudio is free software; you can redistribute it and/or modify
|
2004-11-14 14:58:54 +00:00
|
|
|
it under the terms of the GNU Lesser General Public License as published
|
2004-07-16 19:56:36 +00:00
|
|
|
by the Free Software Foundation; either version 2 of the License,
|
|
|
|
|
or (at your option) any later version.
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2006-06-19 21:53:48 +00:00
|
|
|
PulseAudio is distributed in the hope that it will be useful, but
|
2004-07-16 19:56:36 +00:00
|
|
|
WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
|
General Public License for more details.
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2004-11-14 14:58:54 +00:00
|
|
|
You should have received a copy of the GNU Lesser General Public License
|
2006-06-19 21:53:48 +00:00
|
|
|
along with PulseAudio; if not, write to the Free Software
|
2004-07-16 19:56:36 +00:00
|
|
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
|
|
|
|
|
USA.
|
|
|
|
|
***/
|
|
|
|
|
|
2004-07-16 19:16:42 +00:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
|
#include <config.h>
|
|
|
|
|
#endif
|
|
|
|
|
|
2006-06-19 21:53:48 +00:00
|
|
|
#include <pulsecore/core.h>
|
|
|
|
|
#include <pulsecore/module.h>
|
|
|
|
|
#include <pulsecore/sink.h>
|
|
|
|
|
#include <pulsecore/modargs.h>
|
2006-02-16 19:19:58 +00:00
|
|
|
|
2006-02-16 22:08:06 +00:00
|
|
|
#include "alsa-util.h"
|
2009-01-21 00:23:18 +01:00
|
|
|
#include "alsa-sink.h"
|
2006-02-17 12:10:58 +00:00
|
|
|
#include "module-alsa-sink-symdef.h"
|
2004-07-16 00:27:02 +00:00
|
|
|
|
2007-11-09 18:25:40 +00:00
|
|
|
PA_MODULE_AUTHOR("Lennart Poettering");
|
|
|
|
|
PA_MODULE_DESCRIPTION("ALSA Sink");
|
|
|
|
|
PA_MODULE_VERSION(PACKAGE_VERSION);
|
|
|
|
|
PA_MODULE_LOAD_ONCE(FALSE);
|
2006-04-26 15:40:14 +00:00
|
|
|
PA_MODULE_USAGE(
|
|
|
|
|
"sink_name=<name for the sink> "
|
|
|
|
|
"device=<ALSA device> "
|
2008-05-15 23:34:41 +00:00
|
|
|
"device_id=<ALSA card index> "
|
2006-04-26 15:40:14 +00:00
|
|
|
"format=<sample format> "
|
|
|
|
|
"rate=<sample rate> "
|
2008-05-15 23:34:41 +00:00
|
|
|
"channels=<number of channels> "
|
|
|
|
|
"channel_map=<channel map> "
|
2006-04-26 15:40:14 +00:00
|
|
|
"fragments=<number of fragments> "
|
|
|
|
|
"fragment_size=<fragment size> "
|
2008-05-15 23:34:41 +00:00
|
|
|
"mmap=<enable memory mapping?> "
|
|
|
|
|
"tsched=<enable system timer based scheduling mode?> "
|
|
|
|
|
"tsched_buffer_size=<buffer size when using timer based scheduling> "
|
2008-08-13 13:59:06 +02:00
|
|
|
"tsched_buffer_watermark=<lower fill watermark>");
|
2008-05-15 23:34:41 +00:00
|
|
|
|
|
|
|
|
static const char* const valid_modargs[] = {
|
|
|
|
|
"sink_name",
|
|
|
|
|
"device",
|
|
|
|
|
"device_id",
|
|
|
|
|
"format",
|
|
|
|
|
"rate",
|
|
|
|
|
"channels",
|
|
|
|
|
"channel_map",
|
|
|
|
|
"fragments",
|
|
|
|
|
"fragment_size",
|
|
|
|
|
"mmap",
|
|
|
|
|
"tsched",
|
|
|
|
|
"tsched_buffer_size",
|
|
|
|
|
"tsched_buffer_watermark",
|
|
|
|
|
NULL
|
|
|
|
|
};
|
2007-10-28 19:13:50 +00:00
|
|
|
|
2009-01-21 00:23:18 +01:00
|
|
|
int pa__init(pa_module*m) {
|
|
|
|
|
pa_modargs *ma = NULL;
|
2006-02-26 21:50:55 +00:00
|
|
|
|
2009-01-21 00:23:18 +01:00
|
|
|
pa_assert(m);
|
2006-04-28 07:29:32 +00:00
|
|
|
|
2009-01-21 00:23:18 +01:00
|
|
|
pa_alsa_redirect_errors_inc();
|
2007-10-28 19:13:50 +00:00
|
|
|
snd_config_update_free_global();
|
|
|
|
|
|
2009-01-21 00:23:18 +01:00
|
|
|
if (!(ma = pa_modargs_new(m->argument, valid_modargs))) {
|
|
|
|
|
pa_log("Failed to parse module arguments");
|
2007-10-28 19:13:50 +00:00
|
|
|
goto fail;
|
|
|
|
|
}
|
|
|
|
|
|
2009-01-21 02:02:30 +01:00
|
|
|
if (!(m->userdata = pa_alsa_sink_new(m, ma, __FILE__, NULL, NULL)))
|
2007-10-28 19:13:50 +00:00
|
|
|
goto fail;
|
2006-02-26 21:50:55 +00:00
|
|
|
|
2009-01-21 00:23:18 +01:00
|
|
|
pa_modargs_free(ma);
|
2007-10-28 19:13:50 +00:00
|
|
|
|
2006-02-26 21:50:55 +00:00
|
|
|
return 0;
|
2007-10-28 19:13:50 +00:00
|
|
|
|
|
|
|
|
fail:
|
|
|
|
|
|
2009-01-21 00:23:18 +01:00
|
|
|
if (ma)
|
|
|
|
|
pa_modargs_free(ma);
|
2007-10-28 19:13:50 +00:00
|
|
|
|
2009-01-21 00:23:18 +01:00
|
|
|
pa__done(m);
|
2004-07-16 00:27:02 +00:00
|
|
|
|
2009-01-21 00:23:18 +01:00
|
|
|
return -1;
|
2007-10-28 19:13:50 +00:00
|
|
|
}
|
2006-04-07 22:45:08 +00:00
|
|
|
|
2009-01-21 00:23:18 +01:00
|
|
|
int pa__get_n_used(pa_module *m) {
|
|
|
|
|
pa_sink *sink;
|
2007-10-28 19:13:50 +00:00
|
|
|
|
2009-01-21 00:23:18 +01:00
|
|
|
pa_assert(m);
|
|
|
|
|
pa_assert_se(sink = m->userdata);
|
2007-10-28 19:13:50 +00:00
|
|
|
|
2009-01-21 00:23:18 +01:00
|
|
|
return pa_sink_linked_by(sink);
|
2004-07-16 00:27:02 +00:00
|
|
|
}
|
|
|
|
|
|
2009-01-21 00:23:18 +01:00
|
|
|
void pa__done(pa_module*m) {
|
|
|
|
|
pa_sink *sink;
|
2009-01-15 20:49:12 +01:00
|
|
|
|
|
|
|
|
pa_assert(m);
|
2004-07-16 00:27:02 +00:00
|
|
|
|
2009-01-21 00:23:18 +01:00
|
|
|
if ((sink = m->userdata))
|
|
|
|
|
pa_alsa_sink_free(sink);
|
2008-05-15 23:34:41 +00:00
|
|
|
|
2009-01-17 02:00:57 +01:00
|
|
|
snd_config_update_free_global();
|
2008-05-15 23:34:41 +00:00
|
|
|
pa_alsa_redirect_errors_dec();
|
2007-10-28 19:13:50 +00:00
|
|
|
}
|