1 /* the Music Player Daemon (MPD)
2 * Copyright (C) 2003-2007 by Warren Dukes (warren.dukes@gmail.com)
3 * This project's homepage is: http://www.musicpd.org
5 * Media MVP audio output based on code from MVPMC project:
6 * http://mvpmc.sourceforge.net/
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 #include "../audioOutput.h"
33 #include <sys/types.h>
35 #include <sys/ioctl.h>
41 unsigned long dsp_status
;
42 unsigned long stream_decode_type
;
43 unsigned long sample_rate
;
44 unsigned long bit_rate
;
45 unsigned long raw
[64 / sizeof(unsigned long)];
48 #define MVP_SET_AUD_STOP _IOW('a',1,int)
49 #define MVP_SET_AUD_PLAY _IOW('a',2,int)
50 #define MVP_SET_AUD_PAUSE _IOW('a',3,int)
51 #define MVP_SET_AUD_UNPAUSE _IOW('a',4,int)
52 #define MVP_SET_AUD_SRC _IOW('a',5,int)
53 #define MVP_SET_AUD_MUTE _IOW('a',6,int)
54 #define MVP_SET_AUD_BYPASS _IOW('a',8,int)
55 #define MVP_SET_AUD_CHANNEL _IOW('a',9,int)
56 #define MVP_GET_AUD_STATUS _IOR('a',10,aud_status_t)
57 #define MVP_SET_AUD_VOLUME _IOW('a',13,int)
58 #define MVP_GET_AUD_VOLUME _IOR('a',14,int)
59 #define MVP_SET_AUD_STREAMTYPE _IOW('a',15,int)
60 #define MVP_SET_AUD_FORMAT _IOW('a',16,int)
61 #define MVP_GET_AUD_SYNC _IOR('a',21,pts_sync_data_t*)
62 #define MVP_SET_AUD_STC _IOW('a',22,long long int *)
63 #define MVP_SET_AUD_SYNC _IOW('a',23,int)
64 #define MVP_SET_AUD_END_STREAM _IOW('a',25,int)
65 #define MVP_SET_AUD_RESET _IOW('a',26,int)
66 #define MVP_SET_AUD_DAC_CLK _IOW('a',27,int)
67 #define MVP_GET_AUD_REGS _IOW('a',28,aud_ctl_regs_t*)
69 typedef struct _MvpData
{
73 static int pcmfrequencies
[][3] = {
88 static int numfrequencies
= sizeof(pcmfrequencies
) / 12;
90 static int mvp_testDefault(void)
94 fd
= open("/dev/adec_pcm", O_WRONLY
);
101 WARNING("Error opening PCM device \"/dev/adec_pcm\": %s\n",
107 static int mvp_initDriver(AudioOutput
* audioOutput
, ConfigParam
* param
)
109 MvpData
*md
= xmalloc(sizeof(MvpData
));
111 audioOutput
->data
= md
;
116 static void mvp_finishDriver(AudioOutput
* audioOutput
)
118 MvpData
*md
= audioOutput
->data
;
122 static int mvp_setPcmParams(MvpData
* md
, unsigned long rate
, int channels
,
123 int big_endian
, int bits
)
130 else if (channels
== 2)
135 /* 0,1=24bit(24) , 2,3=16bit */
143 mix
[3] = 0; /* stream type? */
147 else if (big_endian
== 0)
153 * if there is an exact match for the frequency, use it.
155 for (iloop
= 0; iloop
< numfrequencies
; iloop
++) {
156 if (rate
== pcmfrequencies
[iloop
][1]) {
157 mix
[2] = pcmfrequencies
[iloop
][0];
162 if (iloop
>= numfrequencies
) {
163 ERROR("Can not find suitable output frequency for %ld\n", rate
);
167 if (ioctl(md
->fd
, MVP_SET_AUD_FORMAT
, &mix
) < 0) {
168 ERROR("Can not set audio format\n");
172 if (ioctl(md
->fd
, MVP_SET_AUD_SYNC
, 2) != 0) {
173 ERROR("Can not set audio sync\n");
177 if (ioctl(md
->fd
, MVP_SET_AUD_PLAY
, 0) < 0) {
178 ERROR("Can not set audio play mode\n");
185 static int mvp_openDevice(AudioOutput
* audioOutput
)
187 long long int stc
= 0;
188 MvpData
*md
= audioOutput
->data
;
189 AudioFormat
*audioFormat
= &audioOutput
->outAudioFormat
;
190 int mix
[5] = { 0, 2, 7, 1, 0 };
192 if ((md
->fd
= open("/dev/adec_pcm", O_RDWR
| O_NONBLOCK
)) < 0) {
193 ERROR("Error opening /dev/adec_pcm: %s\n", strerror(errno
));
196 if (ioctl(md
->fd
, MVP_SET_AUD_SRC
, 1) < 0) {
197 ERROR("Error setting audio source: %s\n", strerror(errno
));
200 if (ioctl(md
->fd
, MVP_SET_AUD_STREAMTYPE
, 0) < 0) {
201 ERROR("Error setting audio streamtype: %s\n", strerror(errno
));
204 if (ioctl(md
->fd
, MVP_SET_AUD_FORMAT
, &mix
) < 0) {
205 ERROR("Error setting audio format: %s\n", strerror(errno
));
208 ioctl(md
->fd
, MVP_SET_AUD_STC
, &stc
);
209 if (ioctl(md
->fd
, MVP_SET_AUD_BYPASS
, 1) < 0) {
210 ERROR("Error setting audio streamtype: %s\n", strerror(errno
));
213 #ifdef WORDS_BIGENDIAN
214 mvp_setPcmParams(md
, audioFormat
->sampleRate
, audioFormat
->channels
, 0,
217 mvp_setPcmParams(md
, audioFormat
->sampleRate
, audioFormat
->channels
, 1,
220 audioOutput
->open
= 1;
224 static void mvp_closeDevice(AudioOutput
* audioOutput
)
226 MvpData
*md
= audioOutput
->data
;
230 audioOutput
->open
= 0;
233 static void mvp_dropBufferedAudio(AudioOutput
* audioOutput
)
235 MvpData
*md
= audioOutput
->data
;
237 ioctl(md
->fd
, MVP_SET_AUD_RESET
, 0x11);
240 audioOutput
->open
= 0;
244 static int mvp_playAudio(AudioOutput
* audioOutput
, char *playChunk
, int size
)
246 MvpData
*md
= audioOutput
->data
;
249 /* reopen the device since it was closed by dropBufferedAudio */
251 mvp_openDevice(audioOutput
);
254 ret
= write(md
->fd
, playChunk
, size
);
258 ERROR("closing mvp PCM device due to write error: "
259 "%s\n", strerror(errno
));
260 mvp_closeDevice(audioOutput
);
269 AudioOutputPlugin mvpPlugin
= {
276 mvp_dropBufferedAudio
,
278 NULL
, /* sendMetadataFunc */
283 DISABLED_AUDIO_OUTPUT_PLUGIN(mvpPlugin
)
284 #endif /* HAVE_MVP */