2009-03-14 11:33:51 +01:00
|
|
|
/*
|
2013-02-22 20:51:23 +01:00
|
|
|
* Copyright (C) 2003-2013 The Music Player Daemon Project
|
2009-03-14 11:33:51 +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.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/** \file
|
|
|
|
*
|
|
|
|
* This header declares the mixer_plugin class. It should not be
|
2013-02-22 20:51:23 +01:00
|
|
|
* included directly; use MixerInternal.hxx instead in mixer
|
2009-03-14 11:33:51 +01:00
|
|
|
* implementations.
|
|
|
|
*/
|
|
|
|
|
2013-02-22 20:51:23 +01:00
|
|
|
#ifndef MPD_MIXER_PLUGIN_HXX
|
|
|
|
#define MPD_MIXER_PLUGIN_HXX
|
2009-03-14 11:33:51 +01:00
|
|
|
|
2012-08-02 18:20:46 +02:00
|
|
|
#include "gerror.h"
|
2009-10-20 22:10:56 +02:00
|
|
|
|
2009-03-14 11:33:51 +01:00
|
|
|
struct config_param;
|
2013-04-16 21:33:25 +02:00
|
|
|
class Mixer;
|
2009-03-14 11:33:51 +01:00
|
|
|
|
|
|
|
struct mixer_plugin {
|
|
|
|
/**
|
|
|
|
* Alocates and configures a mixer device.
|
2009-10-20 22:10:56 +02:00
|
|
|
*
|
2009-10-21 09:48:41 +02:00
|
|
|
* @param ao the pointer returned by audio_output_plugin.init
|
2013-08-04 13:43:36 +02:00
|
|
|
* @param param the configuration section
|
2011-03-31 21:43:53 +02:00
|
|
|
* @param error_r location to store the error occurring, or
|
2009-10-20 22:10:56 +02:00
|
|
|
* NULL to ignore errors
|
|
|
|
* @return a mixer object, or NULL on error
|
2009-03-14 11:33:51 +01:00
|
|
|
*/
|
2013-08-04 13:43:36 +02:00
|
|
|
Mixer *(*init)(void *ao, const config_param ¶m,
|
2013-04-16 21:33:25 +02:00
|
|
|
GError **error_r);
|
2009-03-14 11:33:51 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Finish and free mixer data
|
|
|
|
*/
|
2013-04-16 21:33:25 +02:00
|
|
|
void (*finish)(Mixer *data);
|
2009-03-14 11:33:51 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Open mixer device
|
2009-10-20 22:10:56 +02:00
|
|
|
*
|
2011-03-31 21:43:53 +02:00
|
|
|
* @param error_r location to store the error occurring, or
|
2009-10-20 22:10:56 +02:00
|
|
|
* NULL to ignore errors
|
|
|
|
* @return true on success, false on error
|
2009-03-14 11:33:51 +01:00
|
|
|
*/
|
2013-04-16 21:33:25 +02:00
|
|
|
bool (*open)(Mixer *data, GError **error_r);
|
2009-03-14 11:33:51 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Close mixer device
|
|
|
|
*/
|
2013-04-16 21:33:25 +02:00
|
|
|
void (*close)(Mixer *data);
|
2009-03-14 11:33:51 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Reads the current volume.
|
|
|
|
*
|
2011-03-31 21:43:53 +02:00
|
|
|
* @param error_r location to store the error occurring, or
|
2009-10-20 22:10:56 +02:00
|
|
|
* NULL to ignore errors
|
2009-10-23 10:32:25 +02:00
|
|
|
* @return the current volume (0..100 including) or -1 if
|
|
|
|
* unavailable or on error (error_r set, mixer will be closed)
|
2009-03-14 11:33:51 +01:00
|
|
|
*/
|
2013-04-16 21:33:25 +02:00
|
|
|
int (*get_volume)(Mixer *mixer, GError **error_r);
|
2009-03-14 11:33:51 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets the volume.
|
|
|
|
*
|
2011-03-31 21:43:53 +02:00
|
|
|
* @param error_r location to store the error occurring, or
|
2009-10-20 22:10:56 +02:00
|
|
|
* NULL to ignore errors
|
2009-03-14 11:33:51 +01:00
|
|
|
* @param volume the new volume (0..100 including)
|
2009-10-20 22:10:56 +02:00
|
|
|
* @return true on success, false on error
|
2009-03-14 11:33:51 +01:00
|
|
|
*/
|
2013-04-16 21:33:25 +02:00
|
|
|
bool (*set_volume)(Mixer *mixer, unsigned volume,
|
2009-10-20 22:10:56 +02:00
|
|
|
GError **error_r);
|
2009-03-26 19:43:18 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* If true, then the mixer is automatically opened, even if
|
|
|
|
* its audio output is not open. If false, then the mixer is
|
|
|
|
* disabled as long as its audio output is closed.
|
|
|
|
*/
|
|
|
|
bool global;
|
2009-03-14 11:33:51 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|