2004-02-24 00:41:20 +01: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
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "audio.h"
|
2004-10-20 18:48:22 +02:00
|
|
|
#include "audioOutput.h"
|
2004-02-24 00:41:20 +01:00
|
|
|
#include "conf.h"
|
|
|
|
#include "log.h"
|
|
|
|
#include "sig_handlers.h"
|
2004-11-02 22:06:44 +01:00
|
|
|
#include "command.h"
|
2004-11-02 22:48:53 +01:00
|
|
|
#include "playerData.h"
|
2004-02-24 00:41:20 +01:00
|
|
|
|
2004-10-20 18:48:22 +02:00
|
|
|
#include <stdlib.h>
|
2004-02-24 00:41:20 +01:00
|
|
|
#include <string.h>
|
|
|
|
#include <assert.h>
|
|
|
|
#include <signal.h>
|
|
|
|
|
2004-05-10 04:20:15 +02:00
|
|
|
static AudioFormat audio_format;
|
2004-02-24 00:41:20 +01:00
|
|
|
|
2004-05-10 04:20:15 +02:00
|
|
|
static AudioFormat * audio_configFormat = NULL;
|
|
|
|
|
2004-11-02 22:06:44 +01:00
|
|
|
static AudioOutput ** audioOutputArray = NULL;
|
|
|
|
static mpd_uint8 audioOutputArraySize = 0;
|
|
|
|
/* the audioEnabledArray should be stuck into shared memory, and then disable
|
|
|
|
and enable in playAudio() routine */
|
2004-11-02 22:48:53 +01:00
|
|
|
static mpd_sint8 * pdAudioDevicesEnabled = NULL;
|
|
|
|
static mpd_sint8 myAudioDevicesEnabled[AUDIO_MAX_DEVICES];
|
2004-11-02 22:06:44 +01:00
|
|
|
|
|
|
|
static mpd_uint8 audioOpened = 0;
|
|
|
|
|
2004-11-09 01:13:42 +01:00
|
|
|
static mpd_sint32 audioBufferSize = 0;
|
|
|
|
static char * audioBuffer = NULL;
|
|
|
|
static mpd_sint32 audioBufferPos = 0;
|
|
|
|
|
2004-10-25 22:09:03 +02:00
|
|
|
void copyAudioFormat(AudioFormat * dest, AudioFormat * src) {
|
2004-10-22 18:16:39 +02:00
|
|
|
if(!src) return;
|
|
|
|
|
2004-11-02 18:05:27 +01:00
|
|
|
memcpy(dest, src, sizeof(AudioFormat));
|
|
|
|
}
|
|
|
|
|
|
|
|
int cmpAudioFormat(AudioFormat * f1, AudioFormat * f2) {
|
|
|
|
return memcmp(f1, f2, sizeof(AudioFormat));
|
2004-05-10 04:20:15 +02:00
|
|
|
}
|
|
|
|
|
2005-03-05 06:22:30 +01:00
|
|
|
extern AudioOutputPlugin alsaPlugin;
|
2004-10-20 18:48:22 +02:00
|
|
|
extern AudioOutputPlugin aoPlugin;
|
2004-11-02 03:03:00 +01:00
|
|
|
extern AudioOutputPlugin ossPlugin;
|
2005-03-13 20:23:09 +01:00
|
|
|
extern AudioOutputPlugin osxPlugin;
|
2005-08-11 14:34:38 +02:00
|
|
|
extern AudioOutputPlugin mvpPlugin;
|
2005-03-05 06:22:30 +01:00
|
|
|
extern AudioOutputPlugin shoutPlugin;
|
2004-02-24 00:41:20 +01:00
|
|
|
|
2004-11-02 22:48:53 +01:00
|
|
|
/* make sure initPlayerData is called before this function!! */
|
2004-10-20 18:48:22 +02:00
|
|
|
void initAudioDriver() {
|
2004-10-28 07:14:55 +02:00
|
|
|
ConfigParam * param = NULL;
|
|
|
|
int i;
|
|
|
|
|
2004-10-20 18:48:22 +02:00
|
|
|
initAudioOutputPlugins();
|
2005-03-05 06:22:30 +01:00
|
|
|
loadAudioOutputPlugin(&alsaPlugin);
|
2004-10-20 18:48:22 +02:00
|
|
|
loadAudioOutputPlugin(&aoPlugin);
|
2004-11-02 03:03:00 +01:00
|
|
|
loadAudioOutputPlugin(&ossPlugin);
|
2005-03-13 20:23:09 +01:00
|
|
|
loadAudioOutputPlugin(&osxPlugin);
|
2005-08-11 14:34:38 +02:00
|
|
|
loadAudioOutputPlugin(&mvpPlugin);
|
2005-03-05 06:22:30 +01:00
|
|
|
loadAudioOutputPlugin(&shoutPlugin);
|
2004-02-24 00:41:20 +01:00
|
|
|
|
2004-11-02 22:48:53 +01:00
|
|
|
pdAudioDevicesEnabled = (getPlayerData())->audioDeviceEnabled;
|
|
|
|
|
|
|
|
for(i = 0; i < AUDIO_MAX_DEVICES; i++) {
|
|
|
|
pdAudioDevicesEnabled[i] = 1;
|
|
|
|
myAudioDevicesEnabled[i] = 1;
|
|
|
|
}
|
|
|
|
|
2005-03-12 04:10:09 +01:00
|
|
|
param = getNextConfigParam(CONF_AUDIO_OUTPUT, param);
|
|
|
|
|
|
|
|
do {
|
2004-11-02 22:48:53 +01:00
|
|
|
if(audioOutputArraySize == AUDIO_MAX_DEVICES) {
|
2004-11-02 22:06:44 +01:00
|
|
|
ERROR("only up to 255 audio output devices are "
|
|
|
|
"supported");
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
|
2004-10-28 07:14:55 +02:00
|
|
|
i = audioOutputArraySize++;
|
|
|
|
|
|
|
|
audioOutputArray = realloc(audioOutputArray,
|
|
|
|
audioOutputArraySize*sizeof(AudioOutput *));
|
|
|
|
|
|
|
|
audioOutputArray[i] = newAudioOutput(param);
|
|
|
|
|
2005-03-12 04:10:09 +01:00
|
|
|
if(!audioOutputArray[i] && param) {
|
2004-10-28 07:14:55 +02:00
|
|
|
ERROR("problems configuring output device defined at "
|
|
|
|
"line %i\n", param->line);
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
2005-03-12 04:10:09 +01:00
|
|
|
} while((param = getNextConfigParam(CONF_AUDIO_OUTPUT, param)));
|
2004-02-24 00:41:20 +01:00
|
|
|
}
|
|
|
|
|
2004-05-10 04:20:15 +02:00
|
|
|
void getOutputAudioFormat(AudioFormat * inAudioFormat,
|
|
|
|
AudioFormat * outAudioFormat)
|
|
|
|
{
|
|
|
|
if(audio_configFormat) {
|
|
|
|
copyAudioFormat(outAudioFormat,audio_configFormat);
|
|
|
|
}
|
|
|
|
else copyAudioFormat(outAudioFormat,inAudioFormat);
|
|
|
|
}
|
|
|
|
|
|
|
|
void initAudioConfig() {
|
2004-10-28 07:14:55 +02:00
|
|
|
ConfigParam * param = getConfigParam(CONF_AUDIO_OUTPUT_FORMAT);
|
2004-05-10 04:20:15 +02:00
|
|
|
|
2004-10-28 07:14:55 +02:00
|
|
|
if(NULL == param || NULL == param->value) return;
|
2004-05-10 04:20:15 +02:00
|
|
|
|
|
|
|
audio_configFormat = malloc(sizeof(AudioFormat));
|
|
|
|
|
2004-10-28 07:14:55 +02:00
|
|
|
if(0 != parseAudioConfig(audio_configFormat, param->value)) {
|
|
|
|
ERROR("error parsing \"%s\" at line %i\n",
|
|
|
|
CONF_AUDIO_OUTPUT_FORMAT, param->line);
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
2004-10-23 03:04:58 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
int parseAudioConfig(AudioFormat * audioFormat, char * conf) {
|
|
|
|
char * test;
|
|
|
|
|
|
|
|
memset(audioFormat,0,sizeof(AudioFormat));
|
2004-05-10 04:20:15 +02:00
|
|
|
|
2004-10-23 03:04:58 +02:00
|
|
|
audioFormat->sampleRate = strtol(conf,&test,10);
|
2004-05-10 04:20:15 +02:00
|
|
|
|
|
|
|
if(*test!=':') {
|
|
|
|
ERROR("error parsing audio output format: %s\n",conf);
|
2004-10-23 03:04:58 +02:00
|
|
|
return -1;
|
2004-05-10 04:20:15 +02:00
|
|
|
}
|
|
|
|
|
2004-10-23 03:04:58 +02:00
|
|
|
/*switch(audioFormat->sampleRate) {
|
2004-05-10 04:20:15 +02:00
|
|
|
case 48000:
|
|
|
|
case 44100:
|
2004-05-11 00:31:23 +02:00
|
|
|
case 32000:
|
|
|
|
case 16000:
|
2004-05-10 04:20:15 +02:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
ERROR("sample rate %i can not be used for audio output\n",
|
2004-10-23 03:04:58 +02:00
|
|
|
(int)audioFormat->sampleRate);
|
|
|
|
return -1
|
2004-05-25 00:29:04 +02:00
|
|
|
}*/
|
|
|
|
|
2004-10-23 03:04:58 +02:00
|
|
|
if(audioFormat->sampleRate <= 0) {
|
2004-05-25 00:29:04 +02:00
|
|
|
ERROR("sample rate %i is not >= 0\n",
|
2004-10-23 03:04:58 +02:00
|
|
|
(int)audioFormat->sampleRate);
|
|
|
|
return -1;
|
2004-05-10 04:20:15 +02:00
|
|
|
}
|
|
|
|
|
2004-10-23 03:04:58 +02:00
|
|
|
audioFormat->bits = strtol(test+1,&test,10);
|
2004-05-10 04:20:15 +02:00
|
|
|
|
|
|
|
if(*test!=':') {
|
|
|
|
ERROR("error parsing audio output format: %s\n",conf);
|
2004-10-23 03:04:58 +02:00
|
|
|
return -1;
|
2004-05-10 04:20:15 +02:00
|
|
|
}
|
|
|
|
|
2004-10-23 03:04:58 +02:00
|
|
|
switch(audioFormat->bits) {
|
2004-05-10 04:20:15 +02:00
|
|
|
case 16:
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
ERROR("bits %i can not be used for audio output\n",
|
2004-10-23 03:04:58 +02:00
|
|
|
(int)audioFormat->bits);
|
|
|
|
return -1;
|
2004-05-10 04:20:15 +02:00
|
|
|
}
|
|
|
|
|
2004-10-23 03:04:58 +02:00
|
|
|
audioFormat->channels = strtol(test+1,&test,10);
|
2004-05-10 04:20:15 +02:00
|
|
|
|
|
|
|
if(*test!='\0') {
|
|
|
|
ERROR("error parsing audio output format: %s\n",conf);
|
2004-10-23 03:04:58 +02:00
|
|
|
return -1;
|
2004-05-10 04:20:15 +02:00
|
|
|
}
|
|
|
|
|
2004-10-23 03:04:58 +02:00
|
|
|
switch(audioFormat->channels) {
|
|
|
|
case 1:
|
2004-05-10 04:20:15 +02:00
|
|
|
case 2:
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
ERROR("channels %i can not be used for audio output\n",
|
2004-10-23 03:04:58 +02:00
|
|
|
(int)audioFormat->channels);
|
|
|
|
return -1;
|
2004-05-10 04:20:15 +02:00
|
|
|
}
|
2004-10-23 03:04:58 +02:00
|
|
|
|
|
|
|
return 0;
|
2004-05-10 04:20:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void finishAudioConfig() {
|
|
|
|
if(audio_configFormat) free(audio_configFormat);
|
|
|
|
}
|
|
|
|
|
2004-02-24 00:41:20 +01:00
|
|
|
void finishAudioDriver() {
|
2004-10-28 07:14:55 +02:00
|
|
|
int i;
|
|
|
|
|
|
|
|
for(i = 0; i < audioOutputArraySize; i++) {
|
|
|
|
finishAudioOutput(audioOutputArray[i]);
|
|
|
|
}
|
|
|
|
|
|
|
|
free(audioOutputArray);
|
|
|
|
audioOutputArray = NULL;
|
2004-11-03 00:08:00 +01:00
|
|
|
audioOutputArraySize = 0;
|
2004-02-24 00:41:20 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
int isCurrentAudioFormat(AudioFormat * audioFormat) {
|
2004-10-28 07:22:22 +02:00
|
|
|
if(!audioFormat) return 1;
|
2004-02-24 00:41:20 +01:00
|
|
|
|
2004-11-02 18:05:27 +01:00
|
|
|
if(cmpAudioFormat(audioFormat, &audio_format) != 0) return 0;
|
2004-10-20 19:11:04 +02:00
|
|
|
|
2004-02-24 00:41:20 +01:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2004-11-02 22:48:53 +01:00
|
|
|
inline void syncAudioDevicesEnabledArrays() {
|
|
|
|
int i;
|
|
|
|
|
|
|
|
memcpy(myAudioDevicesEnabled, pdAudioDevicesEnabled,AUDIO_MAX_DEVICES);
|
|
|
|
|
|
|
|
for(i = 0; i < audioOutputArraySize; i++) {
|
|
|
|
if(myAudioDevicesEnabled[i]) {
|
|
|
|
openAudioOutput(audioOutputArray[i], &audio_format);
|
|
|
|
}
|
2005-03-05 15:01:13 +01:00
|
|
|
else {
|
|
|
|
dropBufferedAudioOutput(audioOutputArray[i]);
|
|
|
|
closeAudioOutput(audioOutputArray[i]);
|
|
|
|
}
|
2004-11-02 22:48:53 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-11-09 01:13:42 +01:00
|
|
|
static int flushAudioBuffer() {
|
|
|
|
int ret = -1;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
if(audioBufferPos == 0) return 0;
|
|
|
|
|
|
|
|
if(0 != memcmp(pdAudioDevicesEnabled, myAudioDevicesEnabled,
|
|
|
|
AUDIO_MAX_DEVICES))
|
|
|
|
{
|
|
|
|
syncAudioDevicesEnabledArrays();
|
|
|
|
}
|
|
|
|
|
|
|
|
for(i = 0; i < audioOutputArraySize; i++) {
|
|
|
|
if(!myAudioDevicesEnabled[i]) continue;
|
|
|
|
if(0 == playAudioOutput(audioOutputArray[i], audioBuffer,
|
|
|
|
audioBufferPos))
|
|
|
|
{
|
|
|
|
ret = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
audioBufferPos = 0;
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2004-05-10 04:20:15 +02:00
|
|
|
int openAudioDevice(AudioFormat * audioFormat) {
|
2004-10-28 07:14:55 +02:00
|
|
|
int isCurrentFormat = isCurrentAudioFormat(audioFormat);
|
|
|
|
int ret = -1;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
if(!audioOutputArray) return -1;
|
|
|
|
|
2004-11-09 01:13:42 +01:00
|
|
|
if(!audioOpened || !isCurrentFormat) {
|
|
|
|
flushAudioBuffer();
|
2004-10-28 07:14:55 +02:00
|
|
|
copyAudioFormat(&audio_format, audioFormat);
|
2004-11-09 04:10:14 +01:00
|
|
|
audioBufferSize = (audio_format.bits >> 3)*
|
|
|
|
audio_format.channels;
|
2004-11-09 01:13:42 +01:00
|
|
|
audioBufferSize*= audio_format.sampleRate >> 5;
|
|
|
|
audioBuffer = realloc(audioBuffer, audioBufferSize);
|
2004-02-24 00:41:20 +01:00
|
|
|
}
|
|
|
|
|
2004-11-02 22:48:53 +01:00
|
|
|
syncAudioDevicesEnabledArrays();
|
|
|
|
|
2004-10-28 07:14:55 +02:00
|
|
|
for(i = 0; i < audioOutputArraySize; i++) {
|
2004-10-28 07:22:22 +02:00
|
|
|
if(audioOutputArray[i]->open) ret = 0;
|
2004-10-28 07:14:55 +02:00
|
|
|
}
|
|
|
|
|
2004-11-02 22:06:44 +01:00
|
|
|
if(ret == 0) audioOpened = 1;
|
|
|
|
else {
|
|
|
|
/* close all devices if there was an error */
|
|
|
|
for(i = 0; i < audioOutputArraySize; i++) {
|
|
|
|
closeAudioOutput(audioOutputArray[i]);
|
|
|
|
}
|
|
|
|
|
|
|
|
audioOpened = 0;
|
|
|
|
}
|
|
|
|
|
2004-10-28 07:14:55 +02:00
|
|
|
return ret;
|
2004-10-20 18:16:50 +02:00
|
|
|
}
|
2004-02-24 00:41:20 +01:00
|
|
|
|
2004-02-28 00:13:26 +01:00
|
|
|
int playAudio(char * playChunk, int size) {
|
2004-11-09 01:13:42 +01:00
|
|
|
int send;
|
|
|
|
|
|
|
|
while(size > 0) {
|
|
|
|
send = audioBufferSize-audioBufferPos;
|
|
|
|
send = send < size ? send : size;
|
2004-10-28 07:14:55 +02:00
|
|
|
|
2004-11-09 01:13:42 +01:00
|
|
|
memcpy(audioBuffer+audioBufferPos, playChunk, send);
|
|
|
|
audioBufferPos += send;
|
|
|
|
size -= send;
|
|
|
|
playChunk+= send;
|
2004-11-02 22:06:44 +01:00
|
|
|
|
2004-11-09 01:13:42 +01:00
|
|
|
if(audioBufferPos == audioBufferSize) {
|
|
|
|
if( flushAudioBuffer() < 0 ) return -1;
|
2004-10-28 07:14:55 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-11-09 01:13:42 +01:00
|
|
|
return 0;
|
2004-02-24 00:41:20 +01:00
|
|
|
}
|
|
|
|
|
2004-06-20 00:27:29 +02:00
|
|
|
int isAudioDeviceOpen() {
|
2004-11-02 22:06:44 +01:00
|
|
|
return audioOpened;
|
2004-06-20 00:27:29 +02:00
|
|
|
}
|
|
|
|
|
2005-03-05 15:01:13 +01:00
|
|
|
void dropBufferedAudio() {
|
|
|
|
int i;
|
|
|
|
|
|
|
|
if(0 != memcmp(pdAudioDevicesEnabled, myAudioDevicesEnabled,
|
|
|
|
AUDIO_MAX_DEVICES))
|
|
|
|
{
|
|
|
|
syncAudioDevicesEnabledArrays();
|
|
|
|
}
|
|
|
|
|
|
|
|
audioBufferPos = 0;
|
|
|
|
|
|
|
|
for(i = 0; i < audioOutputArraySize; i++) {
|
|
|
|
if(!myAudioDevicesEnabled[i]) continue;
|
|
|
|
dropBufferedAudioOutput(audioOutputArray[i]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-05-10 04:20:15 +02:00
|
|
|
void closeAudioDevice() {
|
2004-10-28 07:14:55 +02:00
|
|
|
int i;
|
|
|
|
|
2004-11-09 01:13:42 +01:00
|
|
|
flushAudioBuffer();
|
|
|
|
|
|
|
|
free(audioBuffer);
|
|
|
|
audioBuffer = NULL;
|
|
|
|
audioBufferSize = 0;
|
|
|
|
|
2004-10-28 07:14:55 +02:00
|
|
|
for(i = 0; i < audioOutputArraySize; i++) {
|
|
|
|
closeAudioOutput(audioOutputArray[i]);
|
|
|
|
}
|
2004-11-02 22:06:44 +01:00
|
|
|
|
|
|
|
audioOpened = 0;
|
2004-02-24 00:41:20 +01:00
|
|
|
}
|
2004-10-25 22:09:03 +02:00
|
|
|
|
2004-10-26 04:00:17 +02:00
|
|
|
void sendMetadataToAudioDevice(MpdTag * tag) {
|
2004-10-28 07:14:55 +02:00
|
|
|
int i;
|
|
|
|
|
|
|
|
for(i = 0; i < audioOutputArraySize; i++) {
|
|
|
|
sendMetadataToAudioOutput(audioOutputArray[i], tag);
|
|
|
|
}
|
2004-10-25 22:09:03 +02:00
|
|
|
}
|
2004-11-02 22:06:44 +01:00
|
|
|
|
|
|
|
int enableAudioDevice(FILE * fp, int device) {
|
|
|
|
if(device < 0 || device >= audioOutputArraySize) {
|
|
|
|
commandError(fp, ACK_ERROR_ARG, "audio output device id %i "
|
|
|
|
"doesn't exist\n", device);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2004-11-02 22:48:53 +01:00
|
|
|
pdAudioDevicesEnabled[device] = 1;
|
2004-11-02 22:06:44 +01:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int disableAudioDevice(FILE * fp, int device) {
|
|
|
|
if(device < 0 || device >= audioOutputArraySize) {
|
|
|
|
commandError(fp, ACK_ERROR_ARG, "audio output device id %i "
|
|
|
|
"doesn't exist\n", device);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2004-11-02 22:48:53 +01:00
|
|
|
pdAudioDevicesEnabled[device] = 0;
|
2004-11-02 22:06:44 +01:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2004-11-03 00:08:00 +01:00
|
|
|
|
|
|
|
void printAudioDevices(FILE * fp) {
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for(i = 0; i < audioOutputArraySize; i++) {
|
2004-11-15 21:18:21 +01:00
|
|
|
myfprintf(fp, "outputid: %i\n", i);
|
|
|
|
myfprintf(fp, "outputname: %s\n", audioOutputArray[i]->name);
|
|
|
|
myfprintf(fp, "outputenabled: %i\n",
|
2004-11-03 00:08:00 +01:00
|
|
|
(int)pdAudioDevicesEnabled[i]);
|
|
|
|
}
|
|
|
|
}
|