2004-02-24 00:41:20 +01:00
|
|
|
/* the Music Player Daemon (MPD)
|
2006-07-13 21:20:34 +02:00
|
|
|
* (c)2003-2006 by Warren Dukes (shank@mercury.chem.pitt.edu)
|
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"
|
2004-02-27 02:35:23 +01:00
|
|
|
|
2004-02-24 00:41:20 +01:00
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
#define AUDIO_AO_DRIVER_DEFAULT "default"
|
|
|
|
|
2004-11-02 22:48:53 +01:00
|
|
|
#define AUDIO_MAX_DEVICES 8
|
|
|
|
|
2004-02-24 00:41:20 +01:00
|
|
|
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;
|
|
|
|
|
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);
|
|
|
|
|
2004-10-23 03:04:58 +02:00
|
|
|
int parseAudioConfig(AudioFormat * audioFormat, char * conf);
|
|
|
|
|
2004-11-02 22:48:53 +01:00
|
|
|
/* make sure initPlayerData is called before this function!! */
|
2004-05-10 04:20:15 +02:00
|
|
|
void initAudioConfig();
|
|
|
|
|
|
|
|
void finishAudioConfig();
|
|
|
|
|
2004-02-24 00:41:20 +01:00
|
|
|
void initAudioDriver();
|
|
|
|
|
|
|
|
void finishAudioDriver();
|
|
|
|
|
2004-05-10 04:20:15 +02:00
|
|
|
int openAudioDevice(AudioFormat * audioFormat);
|
2004-02-24 00:41:20 +01:00
|
|
|
|
2004-02-28 00:13:26 +01:00
|
|
|
int playAudio(char * playChunk,int size);
|
2004-02-24 00:41:20 +01:00
|
|
|
|
2005-03-05 15:01:13 +01:00
|
|
|
void dropBufferedAudio();
|
|
|
|
|
2004-05-10 04:20:15 +02:00
|
|
|
void closeAudioDevice();
|
2004-02-24 00:41:20 +01:00
|
|
|
|
2004-06-20 00:27:29 +02:00
|
|
|
int isAudioDeviceOpen();
|
|
|
|
|
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 */
|
|
|
|
int enableAudioDevice(FILE * fp, int device);
|
|
|
|
|
|
|
|
int disableAudioDevice(FILE * fp, int device);
|
|
|
|
|
2004-11-03 00:08:00 +01:00
|
|
|
void printAudioDevices(FILE * fp);
|
|
|
|
|
2005-08-23 14:01:37 +02:00
|
|
|
void readAudioDevicesState();
|
|
|
|
|
2006-05-08 10:14:37 +02:00
|
|
|
void saveAudioDevicesState();
|
|
|
|
|
2004-02-24 00:41:20 +01:00
|
|
|
#endif
|