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-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-10-20 18:48:22 +02:00
|
|
|
static AudioOutput * aoOutput = NULL;
|
|
|
|
|
2004-05-10 04:20:15 +02:00
|
|
|
static void copyAudioFormat(AudioFormat * dest, AudioFormat * src) {
|
|
|
|
dest->sampleRate = src->sampleRate;
|
|
|
|
dest->bits = src->bits;
|
|
|
|
dest->channels = src->channels;
|
|
|
|
}
|
|
|
|
|
2004-10-20 18:48:22 +02:00
|
|
|
extern AudioOutputPlugin aoPlugin;
|
2004-02-24 00:41:20 +01:00
|
|
|
|
2004-10-20 18:48:22 +02:00
|
|
|
void initAudioDriver() {
|
|
|
|
initAudioOutputPlugins();
|
|
|
|
loadAudioOutputPlugin(&aoPlugin);
|
2004-02-24 00:41:20 +01:00
|
|
|
|
2004-10-20 18:48:22 +02:00
|
|
|
aoOutput = newAudioOutput("ao");
|
|
|
|
assert(aoOutput);
|
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() {
|
|
|
|
char * conf = getConf()[CONF_AUDIO_OUTPUT_FORMAT];
|
|
|
|
char * test;
|
|
|
|
|
|
|
|
if(NULL == conf) return;
|
|
|
|
|
|
|
|
audio_configFormat = malloc(sizeof(AudioFormat));
|
|
|
|
|
|
|
|
memset(audio_configFormat,0,sizeof(AudioFormat));
|
|
|
|
|
|
|
|
audio_configFormat->sampleRate = strtol(conf,&test,10);
|
|
|
|
|
|
|
|
if(*test!=':') {
|
|
|
|
ERROR("error parsing audio output format: %s\n",conf);
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
|
2004-05-25 00:29:04 +02:00
|
|
|
/*switch(audio_configFormat->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",
|
|
|
|
(int)audio_configFormat->sampleRate);
|
2004-05-25 00:29:04 +02:00
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}*/
|
|
|
|
|
|
|
|
if(audio_configFormat->sampleRate <= 0) {
|
|
|
|
ERROR("sample rate %i is not >= 0\n",
|
|
|
|
(int)audio_configFormat->sampleRate);
|
2004-05-10 04:20:15 +02:00
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
|
2004-05-10 17:21:40 +02:00
|
|
|
audio_configFormat->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);
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
|
|
|
|
switch(audio_configFormat->bits) {
|
|
|
|
case 16:
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
ERROR("bits %i can not be used for audio output\n",
|
|
|
|
(int)audio_configFormat->bits);
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
|
2004-05-10 17:21:40 +02:00
|
|
|
audio_configFormat->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);
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
|
|
|
|
switch(audio_configFormat->channels) {
|
|
|
|
case 2:
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
ERROR("channels %i can not be used for audio output\n",
|
|
|
|
(int)audio_configFormat->channels);
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void finishAudioConfig() {
|
|
|
|
if(audio_configFormat) free(audio_configFormat);
|
|
|
|
}
|
|
|
|
|
2004-02-24 00:41:20 +01:00
|
|
|
void finishAudioDriver() {
|
2004-10-20 18:48:22 +02:00
|
|
|
finishAudioOutput(aoOutput);
|
|
|
|
aoOutput = NULL;
|
2004-02-24 00:41:20 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
int isCurrentAudioFormat(AudioFormat * audioFormat) {
|
2004-10-20 19:11:04 +02:00
|
|
|
if(!audioFormat) return 0;
|
2004-02-24 00:41:20 +01:00
|
|
|
|
2004-05-10 15:37:48 +02:00
|
|
|
if(memcmp(audioFormat,&audio_format,sizeof(AudioFormat)) != 0) return 0;
|
2004-10-20 19:11:04 +02:00
|
|
|
|
2004-02-24 00:41:20 +01:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2004-05-10 04:20:15 +02:00
|
|
|
int openAudioDevice(AudioFormat * audioFormat) {
|
2004-10-20 19:11:04 +02:00
|
|
|
if(!aoOutput->open || !isCurrentAudioFormat(audioFormat)) {
|
2004-10-20 18:48:22 +02:00
|
|
|
return openAudioOutput(aoOutput, audioFormat);
|
2004-02-24 00:41:20 +01:00
|
|
|
}
|
|
|
|
|
2004-10-20 18:48:22 +02:00
|
|
|
return 0;
|
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-10-20 18:48:22 +02:00
|
|
|
return playAudioOutput(aoOutput, playChunk, size);
|
2004-02-24 00:41:20 +01:00
|
|
|
}
|
|
|
|
|
2004-06-20 00:27:29 +02:00
|
|
|
int isAudioDeviceOpen() {
|
2004-10-20 18:48:22 +02:00
|
|
|
return aoOutput->open;
|
2004-06-20 00:27:29 +02:00
|
|
|
}
|
|
|
|
|
2004-05-10 04:20:15 +02:00
|
|
|
void closeAudioDevice() {
|
2004-10-20 19:11:04 +02:00
|
|
|
closeAudioOutput(aoOutput);
|
2004-02-24 00:41:20 +01:00
|
|
|
}
|