2004-02-24 00:41:20 +01: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-02-24 00:41:20 +01: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_H
|
|
|
|
#define AUDIO_H
|
|
|
|
|
2004-03-18 04:29:25 +01:00
|
|
|
#include "../config.h"
|
|
|
|
|
2004-02-27 02:35:23 +01:00
|
|
|
#include "mpd_types.h"
|
2004-10-25 22:09:03 +02:00
|
|
|
#include "tag.h"
|
2008-01-03 08:29:49 +01:00
|
|
|
#include "os_compat.h"
|
2004-02-24 00:41:20 +01:00
|
|
|
|
|
|
|
#define AUDIO_AO_DRIVER_DEFAULT "default"
|
|
|
|
|
|
|
|
typedef struct _AudioFormat {
|
2004-04-12 20:51:16 +02:00
|
|
|
volatile mpd_sint8 channels;
|
|
|
|
volatile mpd_uint32 sampleRate;
|
|
|
|
volatile mpd_sint8 bits;
|
2004-02-24 00:41:20 +01:00
|
|
|
} AudioFormat;
|
|
|
|
|
2008-03-26 11:37:54 +01:00
|
|
|
unsigned int audio_device_count(void);
|
2006-08-01 12:07:07 +02:00
|
|
|
|
2008-04-12 06:14:09 +02:00
|
|
|
static inline double audioFormatSizeToTime(const AudioFormat * af)
|
|
|
|
{
|
|
|
|
return 8.0 / af->bits / af->channels / af->sampleRate;
|
|
|
|
}
|
|
|
|
|
2004-10-25 22:09:03 +02:00
|
|
|
void copyAudioFormat(AudioFormat * dest, AudioFormat * src);
|
|
|
|
|
2004-11-02 18:05:27 +01:00
|
|
|
int cmpAudioFormat(AudioFormat * dest, AudioFormat * src);
|
|
|
|
|
2004-05-10 04:20:15 +02:00
|
|
|
void getOutputAudioFormat(AudioFormat * inFormat, AudioFormat * outFormat);
|
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
int parseAudioConfig(AudioFormat * audioFormat, char *conf);
|
2004-10-23 03:04:58 +02:00
|
|
|
|
2004-11-02 22:48:53 +01:00
|
|
|
/* make sure initPlayerData is called before this function!! */
|
2006-08-20 02:50:44 +02:00
|
|
|
void initAudioConfig(void);
|
2004-05-10 04:20:15 +02:00
|
|
|
|
2006-08-20 02:50:44 +02:00
|
|
|
void finishAudioConfig(void);
|
2004-05-10 04:20:15 +02:00
|
|
|
|
2006-08-20 02:50:44 +02:00
|
|
|
void initAudioDriver(void);
|
2004-02-24 00:41:20 +01:00
|
|
|
|
2006-08-20 02:50:44 +02:00
|
|
|
void finishAudioDriver(void);
|
2004-02-24 00:41:20 +01:00
|
|
|
|
2004-05-10 04:20:15 +02:00
|
|
|
int openAudioDevice(AudioFormat * audioFormat);
|
2004-02-24 00:41:20 +01:00
|
|
|
|
2008-01-01 11:10:02 +01:00
|
|
|
int playAudio(const char *playChunk, int size);
|
2004-02-24 00:41:20 +01:00
|
|
|
|
2006-08-20 02:50:44 +02:00
|
|
|
void dropBufferedAudio(void);
|
2005-03-05 15:01:13 +01:00
|
|
|
|
2006-08-20 02:50:44 +02:00
|
|
|
void closeAudioDevice(void);
|
2004-02-24 00:41:20 +01:00
|
|
|
|
2006-08-20 02:50:44 +02:00
|
|
|
int isAudioDeviceOpen(void);
|
2004-06-20 00:27:29 +02:00
|
|
|
|
2004-02-24 00:41:20 +01:00
|
|
|
int isCurrentAudioFormat(AudioFormat * audioFormat);
|
|
|
|
|
2004-10-26 04:00:17 +02:00
|
|
|
void sendMetadataToAudioDevice(MpdTag * tag);
|
2004-10-25 22:09:03 +02:00
|
|
|
|
2004-11-02 23:13:58 +01:00
|
|
|
/* these functions are called in the main parent process while the child
|
|
|
|
process is busy playing to the audio */
|
2008-03-26 11:37:54 +01:00
|
|
|
int enableAudioDevice(int fd, unsigned int device);
|
2004-11-02 23:13:58 +01:00
|
|
|
|
2008-03-26 11:37:54 +01:00
|
|
|
int disableAudioDevice(int fd, unsigned int device);
|
2004-11-02 23:13:58 +01:00
|
|
|
|
2006-07-30 05:43:38 +02:00
|
|
|
void printAudioDevices(int fd);
|
2004-11-03 00:08:00 +01:00
|
|
|
|
2006-07-31 01:32:47 +02:00
|
|
|
void readAudioDevicesState(FILE *fp);
|
2005-08-23 14:01:37 +02:00
|
|
|
|
2006-07-31 01:32:47 +02:00
|
|
|
void saveAudioDevicesState(FILE *fp);
|
2006-05-08 10:14:37 +02:00
|
|
|
|
2006-08-20 02:50:44 +02:00
|
|
|
void loadAudioDrivers(void);
|
2004-02-24 00:41:20 +01:00
|
|
|
#endif
|