2004-10-10 15:51:33 +02:00
|
|
|
#include <audioOutput.h>
|
|
|
|
|
|
|
|
#include <list.h>
|
|
|
|
|
|
|
|
static List * audioOutputPluginList;
|
|
|
|
|
|
|
|
void loadAudioOutputPlugin(AudioOutputPlugin * audioOutputPlugin) {
|
|
|
|
insertInList(audioOutputPluginList, audioOutputPlugin->name,
|
|
|
|
audioOutputPlugin);
|
|
|
|
}
|
|
|
|
|
|
|
|
void unloadAudioOutputPlugin(AudioOutputPlugin * audioOutputPlugin) {
|
|
|
|
deleteFromList(audioOutputPluginList, audioOutputPlugin->name);
|
|
|
|
}
|
|
|
|
|
|
|
|
void initAudioOutputPlugins() {
|
|
|
|
audioOutputPluginList = makeList(NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
void finishAudioOutputPlugins() {
|
|
|
|
freeList(audioOutputPluginList);
|
|
|
|
}
|
|
|
|
|
|
|
|
AudioOutput * newAudioOutput(char * name) {
|
|
|
|
AudioOutput * ret = NULL;
|
|
|
|
void * data = NULL;
|
|
|
|
|
|
|
|
if(findInList(audioOutputPluginList, name, &data)) {
|
|
|
|
AudioOutputPlugin * plugin = (AudioOutputPlugin *) data;
|
|
|
|
ret = malloc(sizeof(AudioOutput));
|
2004-10-20 22:41:21 +02:00
|
|
|
ret->finishDriverFunc = plugin->finishDriverFunc;
|
2004-10-10 15:51:33 +02:00
|
|
|
ret->openDeviceFunc = plugin->openDeviceFunc;
|
|
|
|
ret->playFunc = plugin->playFunc;
|
|
|
|
ret->closeDeviceFunc = plugin->closeDeviceFunc;
|
2004-10-25 22:09:03 +02:00
|
|
|
ret->sendMetdataFunc = plugin->sendMetdataFunc;
|
2004-10-20 18:48:22 +02:00
|
|
|
ret->open = 0;
|
2004-10-20 18:05:13 +02:00
|
|
|
|
2004-10-20 22:41:21 +02:00
|
|
|
if(plugin->initDriverFunc(ret) != 0) {
|
|
|
|
free(ret);
|
|
|
|
ret = NULL;
|
|
|
|
}
|
2004-10-10 15:51:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2004-10-20 18:05:13 +02:00
|
|
|
int openAudioOutput(AudioOutput * audioOutput, AudioFormat * audioFormat) {
|
2004-10-20 19:11:04 +02:00
|
|
|
if(audioOutput->open) closeAudioOutput(audioOutput);
|
2004-10-20 18:05:13 +02:00
|
|
|
return audioOutput->openDeviceFunc(audioOutput, audioFormat);
|
|
|
|
}
|
|
|
|
|
|
|
|
int playAudioOutput(AudioOutput * audioOutput, char * playChunk, int size) {
|
2004-10-20 19:11:04 +02:00
|
|
|
if(!audioOutput->open) return -1;
|
2004-10-20 18:05:13 +02:00
|
|
|
return audioOutput->playFunc(audioOutput, playChunk, size);
|
|
|
|
}
|
|
|
|
|
|
|
|
void closeAudioOutput(AudioOutput * audioOutput) {
|
2004-10-20 19:11:04 +02:00
|
|
|
if(audioOutput->open) audioOutput->closeDeviceFunc(audioOutput);
|
2004-10-20 18:05:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void finishAudioOutput(AudioOutput * audioOutput) {
|
2004-10-20 19:11:04 +02:00
|
|
|
closeAudioOutput(audioOutput);
|
2004-10-20 18:05:13 +02:00
|
|
|
audioOutput->finishDriverFunc(audioOutput);
|
|
|
|
free(audioOutput);
|
|
|
|
}
|
2004-10-25 22:09:03 +02:00
|
|
|
|
|
|
|
void sendMetadataToAudioOutput(AudioOutput * audioOutput, MpdTag * tag) {
|
|
|
|
if(!audioOutput->open || !audioOutput->sendMetdataFunc) return;
|
|
|
|
audioOutput->sendMetdataFunc(audioOutput, tag);
|
|
|
|
}
|