2004-09-06 21:15:12 +02:00
|
|
|
/* the Music Player Daemon (MPD)
|
|
|
|
* (c)2003-2004 by Warren Dukes (shank@mercury.chem.pitt.edu)
|
|
|
|
* This project's homepage is: 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef AUDIO_OUTPUT_H
|
|
|
|
#define AUDIO_OUTPUT_H
|
|
|
|
|
|
|
|
#include "../config.h"
|
|
|
|
|
|
|
|
#include "mpd_types.h"
|
|
|
|
#include "audio.h"
|
2004-10-25 22:09:03 +02:00
|
|
|
#include "tag.h"
|
2004-10-28 07:14:55 +02:00
|
|
|
#include "conf.h"
|
2004-09-06 21:15:12 +02:00
|
|
|
|
|
|
|
typedef struct _AudioOutput AudioOutput;
|
|
|
|
|
2005-03-12 04:10:09 +01:00
|
|
|
typedef int (* AudioOutputTestDefaultDeviceFunc) ();
|
|
|
|
|
2004-10-28 07:14:55 +02:00
|
|
|
typedef int (* AudioOutputInitDriverFunc) (AudioOutput * audioOutput,
|
|
|
|
ConfigParam * param);
|
2004-09-06 21:15:12 +02:00
|
|
|
|
|
|
|
typedef void (* AudioOutputFinishDriverFunc) (AudioOutput * audioOutput);
|
|
|
|
|
2004-11-19 16:09:01 +01:00
|
|
|
typedef int (* AudioOutputOpenDeviceFunc) (AudioOutput * audioOutput);
|
2004-09-06 21:15:12 +02:00
|
|
|
|
|
|
|
typedef int (* AudioOutputPlayFunc) (AudioOutput * audioOutput,
|
|
|
|
char * playChunk, int size);
|
|
|
|
|
2005-03-05 15:01:13 +01:00
|
|
|
typedef void (* AudioOutputDropBufferedAudioFunc) (AudioOutput * audioOutput);
|
|
|
|
|
2004-09-06 21:15:12 +02:00
|
|
|
typedef void (* AudioOutputCloseDeviceFunc) (AudioOutput * audioOutput);
|
|
|
|
|
2004-10-25 22:09:03 +02:00
|
|
|
typedef void (* AudioOutputSendMetadataFunc) (AudioOutput * audioOutput,
|
|
|
|
MpdTag * tag);
|
2004-10-23 14:58:59 +02:00
|
|
|
|
2004-09-06 21:15:12 +02:00
|
|
|
struct _AudioOutput {
|
2004-10-20 18:48:22 +02:00
|
|
|
int open;
|
2004-10-28 07:14:55 +02:00
|
|
|
char * name;
|
|
|
|
char * type;
|
2004-09-06 21:15:12 +02:00
|
|
|
|
|
|
|
AudioOutputFinishDriverFunc finishDriverFunc;
|
|
|
|
AudioOutputOpenDeviceFunc openDeviceFunc;
|
|
|
|
AudioOutputPlayFunc playFunc;
|
2005-03-05 15:01:13 +01:00
|
|
|
AudioOutputDropBufferedAudioFunc dropBufferedAudioFunc;
|
2004-10-20 18:05:13 +02:00
|
|
|
AudioOutputCloseDeviceFunc closeDeviceFunc;
|
2004-10-25 22:09:03 +02:00
|
|
|
AudioOutputSendMetadataFunc sendMetdataFunc;
|
2004-09-06 21:15:12 +02:00
|
|
|
|
2004-11-02 18:05:27 +01:00
|
|
|
int convertAudioFormat;
|
|
|
|
AudioFormat inAudioFormat;
|
|
|
|
AudioFormat outAudioFormat;
|
2005-03-08 02:53:13 +01:00
|
|
|
AudioFormat reqAudioFormat;
|
2004-11-02 18:05:27 +01:00
|
|
|
char * convBuffer;
|
|
|
|
int convBufferLen;
|
|
|
|
int sameInAndOutFormats;
|
|
|
|
|
2004-09-06 21:15:12 +02:00
|
|
|
void * data;
|
|
|
|
};
|
|
|
|
|
2004-09-08 04:16:08 +02:00
|
|
|
typedef struct _AudioOutputPlugin {
|
|
|
|
char * name;
|
2004-10-23 14:58:59 +02:00
|
|
|
|
2005-03-12 04:10:09 +01:00
|
|
|
AudioOutputTestDefaultDeviceFunc testDefaultDeviceFunc;
|
2004-09-08 04:16:08 +02:00
|
|
|
AudioOutputInitDriverFunc initDriverFunc;
|
|
|
|
AudioOutputFinishDriverFunc finishDriverFunc;
|
|
|
|
AudioOutputOpenDeviceFunc openDeviceFunc;
|
|
|
|
AudioOutputPlayFunc playFunc;
|
2005-03-05 15:01:13 +01:00
|
|
|
AudioOutputDropBufferedAudioFunc dropBufferedAudioFunc;
|
2004-10-20 18:05:13 +02:00
|
|
|
AudioOutputCloseDeviceFunc closeDeviceFunc;
|
2004-10-25 22:09:03 +02:00
|
|
|
AudioOutputSendMetadataFunc sendMetdataFunc;
|
2004-09-08 04:16:08 +02:00
|
|
|
} AudioOutputPlugin;
|
|
|
|
|
2004-10-20 18:48:22 +02:00
|
|
|
void initAudioOutputPlugins();
|
|
|
|
void finishAudioOutputPlugins();
|
|
|
|
|
2004-10-10 15:51:33 +02:00
|
|
|
void loadAudioOutputPlugin(AudioOutputPlugin * audioOutputPlugin);
|
|
|
|
void unloadAudioOutputPlugin(AudioOutputPlugin * audioOutputPlugin);
|
|
|
|
|
2004-10-28 07:14:55 +02:00
|
|
|
AudioOutput * newAudioOutput(ConfigParam * param);
|
2004-10-20 18:05:13 +02:00
|
|
|
int openAudioOutput(AudioOutput * audioOutput, AudioFormat * audioFormat);
|
2004-10-20 18:48:22 +02:00
|
|
|
int playAudioOutput(AudioOutput * audioOutput, char * playChunk, int size);
|
2005-03-05 15:01:13 +01:00
|
|
|
void dropBufferedAudioOutput(AudioOutput * audioOutput);
|
2004-10-10 15:51:33 +02:00
|
|
|
void closeAudioOutput(AudioOutput * audioOutput);
|
2004-10-20 18:05:13 +02:00
|
|
|
void finishAudioOutput(AudioOutput * audioOutput);
|
2004-10-23 14:58:59 +02:00
|
|
|
int keepAudioOutputAlive(AudioOutput * audioOutput, int ms);
|
2004-10-25 22:09:03 +02:00
|
|
|
void sendMetadataToAudioOutput(AudioOutput * audioOutput, MpdTag * tag);
|
2004-10-10 15:51:33 +02:00
|
|
|
|
2004-09-06 21:15:12 +02:00
|
|
|
#endif
|