audioOutput.c 4.59 KB
Newer Older
1
#include "audioOutput.h"
Warren Dukes's avatar
Warren Dukes committed
2

3 4
#include "list.h"
#include "log.h"
5
#include "pcm_utils.h"
6 7 8 9 10

#include <string.h> 

#define AUDIO_OUTPUT_TYPE	"type"
#define AUDIO_OUTPUT_NAME	"name"
11
#define AUDIO_OUTPUT_FORMAT	"format"
Warren Dukes's avatar
Warren Dukes committed
12 13 14 15

static List * audioOutputPluginList;

void loadAudioOutputPlugin(AudioOutputPlugin * audioOutputPlugin) {
16
	if(!audioOutputPlugin->name) return;
Warren Dukes's avatar
Warren Dukes committed
17 18 19 20 21
	insertInList(audioOutputPluginList, audioOutputPlugin->name,
			audioOutputPlugin);
}

void unloadAudioOutputPlugin(AudioOutputPlugin * audioOutputPlugin) {
22
	if(!audioOutputPlugin->name) return;
Warren Dukes's avatar
Warren Dukes committed
23 24 25 26 27 28 29 30 31 32 33
	deleteFromList(audioOutputPluginList, audioOutputPlugin->name);
}

void initAudioOutputPlugins() {
	audioOutputPluginList = makeList(NULL);
}

void finishAudioOutputPlugins() {
	freeList(audioOutputPluginList);
}

34
#define getBlockParam(name, str, force) { \
35
	bp = getBlockParam(param, name); \
36
	if(force && bp == NULL) { \
37 38 39 40 41
		ERROR("couldn't find parameter \"%s\" in audio output " \
				"definition begining at %i\n", \
				name, param->line); \
		exit(EXIT_FAILURE); \
	} \
42
	if(bp) str = bp->value; \
43 44 45
}

AudioOutput * newAudioOutput(ConfigParam * param) {
Warren Dukes's avatar
Warren Dukes committed
46 47
	AudioOutput * ret = NULL;
	void * data = NULL;
48
	char * name = NULL;
49
	char * format = NULL;
50
	char * type = NULL;
51
	BlockParam * bp;
52

53 54
	getBlockParam(AUDIO_OUTPUT_NAME, name, 1);
	getBlockParam(AUDIO_OUTPUT_TYPE, type, 1);
Warren Dukes's avatar
Warren Dukes committed
55

56
	if(findInList(audioOutputPluginList, type, &data)) {
Warren Dukes's avatar
Warren Dukes committed
57 58
		AudioOutputPlugin * plugin = (AudioOutputPlugin *) data;
		ret = malloc(sizeof(AudioOutput));
59 60
		ret->name = strdup(name);
		ret->type = strdup(type);
61
		ret->finishDriverFunc = plugin->finishDriverFunc;
Warren Dukes's avatar
Warren Dukes committed
62 63 64
		ret->openDeviceFunc = plugin->openDeviceFunc;
		ret->playFunc = plugin->playFunc;
		ret->closeDeviceFunc = plugin->closeDeviceFunc;
65
		ret->sendMetdataFunc = plugin->sendMetdataFunc;
66
		ret->open = 0;
67

68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88
		ret->convertAudioFormat = 0;
		ret->sameInAndOutFormats = 0;
		ret->convBuffer = NULL;
		ret->convBufferLen = 0;

		memset(&ret->inAudioFormat, 0, sizeof(AudioFormat));
		memset(&ret->outAudioFormat, 0, sizeof(AudioFormat));

		getBlockParam(AUDIO_OUTPUT_FORMAT, format, 0);

		if(format) {
			ret->convertAudioFormat = 1;

			if(0 != parseAudioConfig(&ret->outAudioFormat, format))
			{
		        	ERROR("error parsing format at line %i\n", 
						bp->line);
		        	exit(EXIT_FAILURE);
		        }
		}

89
		if(plugin->initDriverFunc(ret, param) != 0) {
90 91 92
			free(ret);
			ret = NULL;
		}
Warren Dukes's avatar
Warren Dukes committed
93
	}
94 95
	else {
		ERROR("couldn't find audio output plugin for type \"%s\" at "
96
				"line %i\n", type, param->line);
97 98
		exit(EXIT_FAILURE);
	}
Warren Dukes's avatar
Warren Dukes committed
99 100 101 102

	return ret;
}

103
int openAudioOutput(AudioOutput * audioOutput, AudioFormat * audioFormat) {
104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128
	if(audioOutput->open) {
		if(cmpAudioFormat(audioFormat, &audioOutput->inAudioFormat) 
				== 0) 
		{
			return 0;
		}
		closeAudioOutput(audioOutput);
	}

	copyAudioFormat(&audioOutput->inAudioFormat, audioFormat);

	if(audioOutput->convertAudioFormat) {
		if(cmpAudioFormat(&audioOutput->inAudioFormat, 
				&audioOutput->outAudioFormat) == 0) 
		{
			audioOutput->sameInAndOutFormats = 1;
		}
		else audioOutput->sameInAndOutFormats = 0;
	}
	else {
		audioOutput->sameInAndOutFormats = 1;
		copyAudioFormat(&audioOutput->outAudioFormat, 
				&audioOutput->inAudioFormat);
	}

129 130 131
	return audioOutput->openDeviceFunc(audioOutput, audioFormat);
}

132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152
static void convertAudioFormat(AudioOutput * audioOutput, char ** chunkArgPtr,
		int * sizeArgPtr)
{
	int size = pcm_sizeOfOutputBufferForAudioFormatConversion(
			&(audioOutput->inAudioFormat), *sizeArgPtr, 
			&(audioOutput->outAudioFormat));

	if(size > audioOutput->convBufferLen) {
		audioOutput->convBuffer = 
				realloc(audioOutput->convBuffer, size);
		audioOutput->convBufferLen = size;
	}

	pcm_convertAudioFormat(&(audioOutput->inAudioFormat), *chunkArgPtr, 
			*sizeArgPtr, &(audioOutput->outAudioFormat), 
			audioOutput->convBuffer);
	
	*sizeArgPtr = size;
	*chunkArgPtr = audioOutput->convBuffer;
}

153
int playAudioOutput(AudioOutput * audioOutput, char * playChunk, int size) {
Warren Dukes's avatar
Warren Dukes committed
154
	if(!audioOutput->open) return -1;
155 156 157 158 159

	if(!audioOutput->sameInAndOutFormats) {
		convertAudioFormat(audioOutput, &playChunk, &size);
	}
	
160 161 162 163
	return audioOutput->playFunc(audioOutput, playChunk, size);
}

void closeAudioOutput(AudioOutput * audioOutput) {
Warren Dukes's avatar
Warren Dukes committed
164
	if(audioOutput->open) audioOutput->closeDeviceFunc(audioOutput);
165 166 167
}

void finishAudioOutput(AudioOutput * audioOutput) {
Warren Dukes's avatar
Warren Dukes committed
168
	closeAudioOutput(audioOutput);
169
	audioOutput->finishDriverFunc(audioOutput);
170
	if(audioOutput->convBuffer) free(audioOutput->convBuffer);
171 172
	free(audioOutput->type);
	free(audioOutput->name);
173 174
	free(audioOutput);
}
175 176

void sendMetadataToAudioOutput(AudioOutput * audioOutput, MpdTag * tag) {
177
	if(!audioOutput->sendMetdataFunc) return;
178 179
	audioOutput->sendMetdataFunc(audioOutput, tag);
}