2004-09-06 21:15:12 +02:00
|
|
|
/* the Music Player Daemon (MPD)
|
2007-04-05 05:22:33 +02:00
|
|
|
* Copyright (C) 2003-2007 by Warren Dukes (warren.dukes@gmail.com)
|
2004-09-06 21:15:12 +02:00
|
|
|
* 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"
|
|
|
|
|
2007-05-24 23:15:37 +02:00
|
|
|
#include "pcm_utils.h"
|
2004-09-06 21:15:12 +02:00
|
|
|
#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"
|
2006-08-26 08:25:57 +02:00
|
|
|
#include "utils.h"
|
2008-01-03 08:29:49 +01:00
|
|
|
#include "os_compat.h"
|
2004-09-06 21:15:12 +02:00
|
|
|
|
2007-01-14 04:07:53 +01:00
|
|
|
#define DISABLED_AUDIO_OUTPUT_PLUGIN(plugin) AudioOutputPlugin plugin;
|
2006-07-14 19:39:14 +02:00
|
|
|
|
2004-09-06 21:15:12 +02:00
|
|
|
typedef struct _AudioOutput AudioOutput;
|
|
|
|
|
2008-01-26 13:46:09 +01:00
|
|
|
typedef int (*AudioOutputTestDefaultDeviceFunc) (void);
|
2005-03-12 04:10:09 +01:00
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
typedef int (*AudioOutputInitDriverFunc) (AudioOutput * audioOutput,
|
|
|
|
ConfigParam * param);
|
2004-09-06 21:15:12 +02:00
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
typedef void (*AudioOutputFinishDriverFunc) (AudioOutput * audioOutput);
|
2004-09-06 21:15:12 +02:00
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
typedef int (*AudioOutputOpenDeviceFunc) (AudioOutput * audioOutput);
|
2004-09-06 21:15:12 +02:00
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
typedef int (*AudioOutputPlayFunc) (AudioOutput * audioOutput,
|
2008-04-12 06:15:52 +02:00
|
|
|
const char *playChunk, size_t size);
|
2004-09-06 21:15:12 +02:00
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
typedef void (*AudioOutputDropBufferedAudioFunc) (AudioOutput * audioOutput);
|
2005-03-05 15:01:13 +01:00
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
typedef void (*AudioOutputCloseDeviceFunc) (AudioOutput * audioOutput);
|
2004-09-06 21:15:12 +02:00
|
|
|
|
2006-07-20 18:02:40 +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;
|
2008-02-05 11:17:33 +01:00
|
|
|
const char *name;
|
|
|
|
const char *type;
|
2006-07-20 18:02:40 +02:00
|
|
|
|
|
|
|
AudioOutputFinishDriverFunc finishDriverFunc;
|
|
|
|
AudioOutputOpenDeviceFunc openDeviceFunc;
|
|
|
|
AudioOutputPlayFunc playFunc;
|
|
|
|
AudioOutputDropBufferedAudioFunc dropBufferedAudioFunc;
|
|
|
|
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;
|
2007-05-24 23:15:37 +02:00
|
|
|
ConvState convState;
|
2006-07-20 18:02:40 +02:00
|
|
|
char *convBuffer;
|
2004-11-02 18:05:27 +01:00
|
|
|
int convBufferLen;
|
|
|
|
int sameInAndOutFormats;
|
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
void *data;
|
2004-09-06 21:15:12 +02:00
|
|
|
};
|
|
|
|
|
2004-09-08 04:16:08 +02:00
|
|
|
typedef struct _AudioOutputPlugin {
|
2008-02-05 11:17:33 +01:00
|
|
|
const char *name;
|
2004-10-23 14:58:59 +02:00
|
|
|
|
2005-03-12 04:10:09 +01:00
|
|
|
AudioOutputTestDefaultDeviceFunc testDefaultDeviceFunc;
|
2006-07-20 18:02:40 +02:00
|
|
|
AudioOutputInitDriverFunc initDriverFunc;
|
|
|
|
AudioOutputFinishDriverFunc finishDriverFunc;
|
|
|
|
AudioOutputOpenDeviceFunc openDeviceFunc;
|
|
|
|
AudioOutputPlayFunc playFunc;
|
|
|
|
AudioOutputDropBufferedAudioFunc dropBufferedAudioFunc;
|
|
|
|
AudioOutputCloseDeviceFunc closeDeviceFunc;
|
|
|
|
AudioOutputSendMetadataFunc sendMetdataFunc;
|
2004-09-08 04:16:08 +02:00
|
|
|
} AudioOutputPlugin;
|
|
|
|
|
2006-08-20 02:50:44 +02:00
|
|
|
void initAudioOutputPlugins(void);
|
|
|
|
void finishAudioOutputPlugins(void);
|
2004-10-20 18:48:22 +02:00
|
|
|
|
2004-10-10 15:51:33 +02:00
|
|
|
void loadAudioOutputPlugin(AudioOutputPlugin * audioOutputPlugin);
|
|
|
|
void unloadAudioOutputPlugin(AudioOutputPlugin * audioOutputPlugin);
|
|
|
|
|
2006-08-01 12:07:16 +02:00
|
|
|
int initAudioOutput(AudioOutput *, ConfigParam * param);
|
2004-10-20 18:05:13 +02:00
|
|
|
int openAudioOutput(AudioOutput * audioOutput, AudioFormat * audioFormat);
|
2008-04-12 06:15:52 +02:00
|
|
|
int playAudioOutput(AudioOutput * audioOutput,
|
|
|
|
const char *playChunk, size_t 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
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
void printAllOutputPluginTypes(FILE * fp);
|
2007-01-14 05:33:13 +01:00
|
|
|
|
2007-06-12 19:49:31 +02:00
|
|
|
extern AudioOutputPlugin shoutPlugin;
|
2007-05-30 18:52:56 +02:00
|
|
|
extern AudioOutputPlugin nullPlugin;
|
2007-06-13 16:15:30 +02:00
|
|
|
extern AudioOutputPlugin fifoPlugin;
|
2007-01-14 05:33:13 +01:00
|
|
|
extern AudioOutputPlugin alsaPlugin;
|
|
|
|
extern AudioOutputPlugin aoPlugin;
|
|
|
|
extern AudioOutputPlugin ossPlugin;
|
|
|
|
extern AudioOutputPlugin osxPlugin;
|
|
|
|
extern AudioOutputPlugin pulsePlugin;
|
|
|
|
extern AudioOutputPlugin mvpPlugin;
|
|
|
|
extern AudioOutputPlugin jackPlugin;
|
|
|
|
|
2004-09-06 21:15:12 +02:00
|
|
|
#endif
|