2004-09-14 17:52:11 +00:00
|
|
|
/***
|
2006-06-19 21:53:48 +00:00
|
|
|
This file is part of PulseAudio.
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2011-04-29 16:40:50 +01:00
|
|
|
Copyright 2009 Lennart Poettering
|
|
|
|
|
Copyright 2011 Colin Guthrie
|
2007-02-13 15:35:19 +00:00
|
|
|
|
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
|
2009-03-03 20:23:02 +00:00
|
|
|
by the Free Software Foundation; either version 2.1 of the License,
|
2004-09-14 17:52:11 +00:00
|
|
|
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-09-14 17:52:11 +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-09-14 17:52:11 +00:00
|
|
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
|
|
|
|
|
USA.
|
|
|
|
|
***/
|
|
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
|
#include <config.h>
|
|
|
|
|
#endif
|
|
|
|
|
|
2006-06-19 21:53:48 +00:00
|
|
|
#include <pulse/xmalloc.h>
|
2006-05-17 16:34:18 +00:00
|
|
|
|
2006-06-19 21:53:48 +00:00
|
|
|
#include <pulsecore/module.h>
|
|
|
|
|
#include <pulsecore/log.h>
|
2006-02-16 19:19:58 +00:00
|
|
|
|
2004-10-30 01:55:16 +00:00
|
|
|
#include "module-combine-symdef.h"
|
2004-09-14 17:52:11 +00:00
|
|
|
|
2011-04-29 16:40:50 +01:00
|
|
|
PA_MODULE_AUTHOR("Colin Guthrie");
|
|
|
|
|
PA_MODULE_DESCRIPTION("Compatibility module (module-combine rename)");
|
2007-11-09 18:25:40 +00:00
|
|
|
PA_MODULE_VERSION(PACKAGE_VERSION);
|
|
|
|
|
PA_MODULE_LOAD_ONCE(FALSE);
|
2011-04-29 16:40:50 +01:00
|
|
|
PA_MODULE_DEPRECATED("Please use module-combine-sink instead of module-combine!");
|
2004-09-14 17:52:11 +00:00
|
|
|
|
|
|
|
|
struct userdata {
|
2011-06-08 20:26:07 +01:00
|
|
|
uint32_t module_index;
|
2004-09-14 17:52:11 +00:00
|
|
|
};
|
|
|
|
|
|
2007-10-28 19:13:50 +00:00
|
|
|
int pa__init(pa_module*m) {
|
2004-09-14 17:52:11 +00:00
|
|
|
struct userdata *u;
|
2011-06-08 20:26:07 +01:00
|
|
|
pa_module *module;
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2007-10-28 19:13:50 +00:00
|
|
|
pa_assert(m);
|
2011-04-29 16:40:50 +01:00
|
|
|
pa_assert_se(m->userdata = u = pa_xnew0(struct userdata, 1));
|
2004-09-14 17:52:11 +00:00
|
|
|
|
2011-04-29 16:40:50 +01:00
|
|
|
pa_log_warn("We will now load module-combine-sink. Please make sure to remove module-combine from your configuration.");
|
2009-08-15 01:35:53 +02:00
|
|
|
|
2011-06-08 20:26:07 +01:00
|
|
|
module = pa_module_load(m->core, "module-combine-sink", m->argument);
|
|
|
|
|
u->module_index = module ? module->index : PA_INVALID_INDEX;
|
2009-08-15 01:35:53 +02:00
|
|
|
|
2011-06-08 20:26:07 +01:00
|
|
|
return module ? 0 : -1;
|
2004-09-14 17:52:11 +00:00
|
|
|
}
|
|
|
|
|
|
2007-10-28 19:13:50 +00:00
|
|
|
void pa__done(pa_module*m) {
|
2004-09-14 17:52:11 +00:00
|
|
|
struct userdata *u;
|
2007-10-28 19:13:50 +00:00
|
|
|
|
|
|
|
|
pa_assert(m);
|
2011-04-29 16:40:50 +01:00
|
|
|
pa_assert(m->userdata);
|
2004-09-14 17:52:11 +00:00
|
|
|
|
2011-04-29 16:40:50 +01:00
|
|
|
u = m->userdata;
|
2007-10-28 19:13:50 +00:00
|
|
|
|
2011-06-08 20:26:07 +01:00
|
|
|
if (u && PA_INVALID_INDEX != u->module_index)
|
|
|
|
|
pa_module_unload_by_index(m->core, u->module_index, TRUE);
|
2008-06-20 22:32:41 +02:00
|
|
|
|
2007-10-28 19:13:50 +00:00
|
|
|
pa_xfree(u);
|
|
|
|
|
}
|