2009-01-25 17:37:50 +01:00
|
|
|
/*
|
2010-01-01 05:55:13 +01:00
|
|
|
* Copyright (C) 2003-2010 The Music Player Daemon Project
|
2009-01-25 17:37:50 +01:00
|
|
|
* http://www.musicpd.org
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but 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.
|
2009-03-13 18:43:16 +01:00
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
2009-01-25 17:37:50 +01:00
|
|
|
*/
|
2009-01-10 17:53:33 +01:00
|
|
|
|
2009-11-12 09:12:38 +01:00
|
|
|
#include "config.h"
|
2009-03-14 11:47:54 +01:00
|
|
|
#include "mixer_api.h"
|
2009-01-10 17:53:33 +01:00
|
|
|
|
2009-03-02 18:39:43 +01:00
|
|
|
#undef G_LOG_DOMAIN
|
|
|
|
#define G_LOG_DOMAIN "mixer"
|
2009-03-14 11:47:54 +01:00
|
|
|
|
|
|
|
void
|
|
|
|
mixer_init(struct mixer *mixer, const struct mixer_plugin *plugin)
|
|
|
|
{
|
|
|
|
mixer->plugin = plugin;
|
2009-03-14 11:53:28 +01:00
|
|
|
mixer->mutex = g_mutex_new();
|
2009-03-26 19:43:18 +01:00
|
|
|
mixer->open = false;
|
2009-03-26 19:46:39 +01:00
|
|
|
mixer->failed = false;
|
2009-03-14 11:47:54 +01:00
|
|
|
}
|