1 /***************************************************************************
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
10 * Copyright (C) 2005 by Nick Lanham
11 * Copyright (C) 2010 by Thomas Martitz
13 * This program is free software; you can redistribute it and/or
14 * modify it under the terms of the GNU General Public License
15 * as published by the Free Software Foundation; either version 2
16 * of the License, or (at your option) any later version.
18 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
19 * KIND, either express or implied.
21 ****************************************************************************/
35 #include "pcm_sampr.h"
39 extern bool debug_audio
;
42 static int sim_volume
= 0;
44 #if CONFIG_CODEC == SWCODEC
45 static int cvt_status
= -1;
47 static Uint8
* pcm_data
;
48 static size_t pcm_data_size
;
49 static size_t pcm_sample_bytes
;
50 static size_t pcm_channel_bytes
;
62 static SDL_AudioSpec obtained
;
63 static SDL_AudioCVT cvt
;
65 void pcm_play_lock(void)
70 void pcm_play_unlock(void)
75 static void pcm_dma_apply_settings_nolock(void)
77 cvt_status
= SDL_BuildAudioCVT(&cvt
, AUDIO_S16SYS
, 2, pcm_sampr
,
78 obtained
.format
, obtained
.channels
, obtained
.freq
);
81 cvt
.len_ratio
= (double)obtained
.freq
/ (double)pcm_sampr
;
85 void pcm_dma_apply_settings(void)
88 pcm_dma_apply_settings_nolock();
92 void pcm_play_dma_start(const void *addr
, size_t size
)
94 pcm_dma_apply_settings_nolock();
96 pcm_data
= (Uint8
*) addr
;
102 void pcm_play_dma_stop(void)
106 if (udata
.debug
!= NULL
) {
109 DEBUGF("Audio debug file closed\n");
114 void pcm_play_dma_pause(bool pause
)
122 size_t pcm_get_bytes_waiting(void)
124 return pcm_data_size
;
127 void write_to_soundcard(struct pcm_udata
*udata
)
130 if (debug_audio
&& (udata
->debug
== NULL
)) {
131 udata
->debug
= fopen("audiodebug.raw", "ab");
132 DEBUGF("Audio debug file open\n");
136 Uint32 rd
= udata
->num_in
;
137 Uint32 wr
= (double)rd
* cvt
.len_ratio
;
139 if (wr
> udata
->num_out
) {
141 rd
= (double)wr
/ cvt
.len_ratio
;
143 if (rd
> udata
->num_in
)
146 wr
= (double)rd
* cvt
.len_ratio
;
150 if (wr
== 0 || rd
== 0)
152 udata
->num_out
= udata
->num_in
= 0;
156 if (cvt_status
> 0) {
157 cvt
.len
= rd
* pcm_sample_bytes
;
158 cvt
.buf
= (Uint8
*) malloc(cvt
.len
* cvt
.len_mult
);
160 memcpy(cvt
.buf
, pcm_data
, cvt
.len
);
162 SDL_ConvertAudio(&cvt
);
163 SDL_MixAudio(udata
->stream
, cvt
.buf
, cvt
.len_cvt
, sim_volume
);
165 udata
->num_in
= cvt
.len
/ pcm_sample_bytes
;
166 udata
->num_out
= cvt
.len_cvt
/ pcm_sample_bytes
;
169 if (udata
->debug
!= NULL
) {
170 fwrite(cvt
.buf
, sizeof(Uint8
), cvt
.len_cvt
, udata
->debug
);
176 /* Convert is bad, so do silence */
177 Uint32 num
= wr
*obtained
.channels
;
181 switch (pcm_channel_bytes
)
185 Uint8
*stream
= udata
->stream
;
187 *stream
++ = obtained
.silence
;
192 Uint16
*stream
= (Uint16
*)udata
->stream
;
194 *stream
++ = obtained
.silence
;
199 if (udata
->debug
!= NULL
) {
200 fwrite(udata
->stream
, sizeof(Uint8
), wr
, udata
->debug
);
205 udata
->num_in
= udata
->num_out
= MIN(udata
->num_in
, udata
->num_out
);
206 SDL_MixAudio(udata
->stream
, pcm_data
,
207 udata
->num_out
* pcm_sample_bytes
, sim_volume
);
209 if (udata
->debug
!= NULL
) {
210 fwrite(pcm_data
, sizeof(Uint8
), udata
->num_out
* pcm_sample_bytes
,
217 void sdl_audio_callback(struct pcm_udata
*udata
, Uint8
*stream
, int len
)
219 udata
->stream
= stream
;
221 /* Write what we have in the PCM buffer */
222 if (pcm_data_size
> 0)
225 /* Audio card wants more? Get some more then. */
227 if ((ssize_t
)pcm_data_size
<= 0) {
230 if (pcm_callback_for_more
)
231 pcm_callback_for_more(&pcm_data
, &pcm_data_size
);
234 if (pcm_data_size
> 0) {
236 udata
->num_in
= pcm_data_size
/ pcm_sample_bytes
;
237 udata
->num_out
= len
/ pcm_sample_bytes
;
239 write_to_soundcard(udata
);
241 udata
->num_in
*= pcm_sample_bytes
;
242 udata
->num_out
*= pcm_sample_bytes
;
244 pcm_data
+= udata
->num_in
;
245 pcm_data_size
-= udata
->num_in
;
246 udata
->stream
+= udata
->num_out
;
247 len
-= udata
->num_out
;
249 DEBUGF("sdl_audio_callback: No Data.\n");
251 pcm_play_dma_stopped_callback();
257 const void * pcm_play_dma_get_peak_buffer(int *count
)
259 uintptr_t addr
= (uintptr_t)pcm_data
;
260 *count
= pcm_data_size
/ 4;
261 return (void *)((addr
+ 2) & ~3);
264 #ifdef HAVE_RECORDING
265 void pcm_rec_lock(void)
269 void pcm_rec_unlock(void)
273 void pcm_rec_dma_init(void)
277 void pcm_rec_dma_close(void)
281 void pcm_rec_dma_start(void *start
, size_t size
)
287 void pcm_rec_dma_stop(void)
291 void pcm_rec_dma_record_more(void *start
, size_t size
)
297 unsigned long pcm_rec_status(void)
302 const void * pcm_rec_dma_get_peak_buffer(void)
307 #endif /* HAVE_RECORDING */
309 void pcm_play_dma_init(void)
311 if (SDL_InitSubSystem(SDL_INIT_AUDIO
))
313 DEBUGF("Could not initialize SDL audio subsystem!\n");
317 SDL_AudioSpec wanted_spec
;
321 udata
.debug
= fopen("audiodebug.raw", "wb");
322 DEBUGF("Audio debug file open\n");
325 /* Set 16-bit stereo audio at 44Khz */
326 wanted_spec
.freq
= 44100;
327 wanted_spec
.format
= AUDIO_S16SYS
;
328 wanted_spec
.channels
= 2;
329 wanted_spec
.samples
= 2048;
330 wanted_spec
.callback
=
331 (void (SDLCALL
*)(void *userdata
,
332 Uint8
*stream
, int len
))sdl_audio_callback
;
333 wanted_spec
.userdata
= &udata
;
335 /* Open the audio device and start playing sound! */
336 if(SDL_OpenAudio(&wanted_spec
, &obtained
) < 0) {
337 DEBUGF("Unable to open audio: %s\n", SDL_GetError());
341 switch (obtained
.format
)
345 pcm_channel_bytes
= 1;
351 pcm_channel_bytes
= 2;
354 DEBUGF("Unknown sample format obtained: %u\n",
355 (unsigned)obtained
.format
);
359 pcm_sample_bytes
= obtained
.channels
* pcm_channel_bytes
;
361 pcm_dma_apply_settings_nolock();
364 void pcm_postinit(void)
368 void pcm_set_mixer_volume(int volume
)
373 #endif /* CONFIG_CODEC == SWCODEC */