/* ZeroSPU2 * Copyright (C) 2006-2010 zerofrog * * 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 */ // Modified by arcum42@gmail.com // ALSA #include "Alsa.h" #include "Linux.h" static snd_pcm_t *handle = NULL; static snd_pcm_uframes_t buffer_size; int AlsaSetupSound() { snd_pcm_hw_params_t *hwparams; snd_pcm_sw_params_t *swparams; snd_pcm_status_t *status; unsigned int pspeed = SAMPLE_RATE; int pchannels = 2; snd_pcm_format_t format = SND_PCM_FORMAT_S16_LE; unsigned int buffer_time = SOUNDSIZE; unsigned int period_time= buffer_time / 4; int err; err = snd_pcm_open(&handle, "default", SND_PCM_STREAM_PLAYBACK, SND_PCM_NONBLOCK); if(err < 0) { ERROR_LOG("Audio open error: %s\n", snd_strerror(err)); return -1; } err = snd_pcm_nonblock(handle, 0); if(err < 0) { ERROR_LOG("Can't set blocking mode: %s\n", snd_strerror(err)); return -1; } snd_pcm_hw_params_alloca(&hwparams); snd_pcm_sw_params_alloca(&swparams); err = snd_pcm_hw_params_any(handle, hwparams); if (err < 0) { ERROR_LOG("Broken configuration for this PCM: %s\n", snd_strerror(err)); return -1; } err = snd_pcm_hw_params_set_access(handle, hwparams, SND_PCM_ACCESS_RW_INTERLEAVED); if (err < 0) { ERROR_LOG("Access type not available: %s\n", snd_strerror(err)); return -1; } err = snd_pcm_hw_params_set_format(handle, hwparams, format); if (err < 0) { ERROR_LOG("Sample format not available: %s\n", snd_strerror(err)); return -1; } err = snd_pcm_hw_params_set_channels(handle, hwparams, pchannels); if (err < 0) { ERROR_LOG("Channels count not available: %s\n", snd_strerror(err)); return -1; } err = snd_pcm_hw_params_set_rate_near(handle, hwparams, &pspeed, 0); if (err < 0) { ERROR_LOG("Rate not available: %s\n", snd_strerror(err)); return -1; } err = snd_pcm_hw_params_set_buffer_time_near(handle, hwparams, &buffer_time, 0); if(err < 0) { ERROR_LOG("Buffer time error: %s\n", snd_strerror(err)); return -1; } err = snd_pcm_hw_params_set_period_time_near(handle, hwparams, &period_time, 0); if (err < 0) { ERROR_LOG("Period time error: %s\n", snd_strerror(err)); return -1; } err = snd_pcm_hw_params(handle, hwparams); if (err < 0) { ERROR_LOG("Unable to install hw params: %s\n", snd_strerror(err)); return -1; } snd_pcm_status_alloca(&status); err = snd_pcm_status(handle, status); if(err < 0) { ERROR_LOG("Unable to get status: %s\n", snd_strerror(err)); return -1; } buffer_size=snd_pcm_status_get_avail(status); return 0; } void AlsaRemoveSound() { if(handle != NULL) { snd_pcm_drop(handle); snd_pcm_close(handle); handle = NULL; } } int AlsaSoundGetBytesBuffered() { unsigned long l = snd_pcm_avail_update(handle); if (MaxBuffer == 0) MaxBuffer = l; return MaxBuffer - l; /*int l; // failed to open? if(handle == NULL) return SOUNDSIZE; l = snd_pcm_avail_update(handle); if (l<0) return 0; else if (l no? wait else l=0; // -> else go on return l;*/ } void AlsaSoundFeedVoiceData(unsigned char* pSound,long lBytes) { if (handle == NULL) return; if (snd_pcm_state(handle) == SND_PCM_STATE_XRUN) snd_pcm_prepare(handle); snd_pcm_writei(handle,pSound, lBytes/4); }