2010-06-12 02:54:51 +00:00
|
|
|
/* ScummVM - Graphic Adventure Engine
|
|
|
|
*
|
|
|
|
* ScummVM is the legal property of its developers, whose names
|
|
|
|
* are too numerous to list here. Please refer to the COPYRIGHT
|
|
|
|
* file distributed with this source distribution.
|
|
|
|
*
|
|
|
|
* 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
*
|
|
|
|
* $URL$
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2010-08-12 06:30:26 +00:00
|
|
|
#if defined(SDL_BACKEND)
|
2010-06-12 02:54:51 +00:00
|
|
|
|
|
|
|
#include "backends/mixer/sdl/sdl-mixer.h"
|
2010-06-24 04:11:54 +00:00
|
|
|
#include "common/system.h"
|
2010-06-12 02:54:51 +00:00
|
|
|
#include "common/config-manager.h"
|
|
|
|
|
2010-07-01 06:07:24 +00:00
|
|
|
#ifdef GP2X
|
|
|
|
#define SAMPLES_PER_SEC 11025
|
|
|
|
#else
|
2010-06-12 02:54:51 +00:00
|
|
|
#define SAMPLES_PER_SEC 22050
|
2010-07-01 06:07:24 +00:00
|
|
|
#endif
|
2010-06-12 02:54:51 +00:00
|
|
|
//#define SAMPLES_PER_SEC 44100
|
|
|
|
|
2010-06-24 04:11:54 +00:00
|
|
|
SdlMixerManager::SdlMixerManager()
|
2010-06-12 02:54:51 +00:00
|
|
|
:
|
2010-06-29 01:08:36 +00:00
|
|
|
_mixer(0),
|
|
|
|
_audioSuspended(false) {
|
2010-06-20 20:19:53 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2010-06-24 04:11:54 +00:00
|
|
|
SdlMixerManager::~SdlMixerManager() {
|
|
|
|
_mixer->setReady(false);
|
2010-06-20 20:19:53 +00:00
|
|
|
|
|
|
|
SDL_CloseAudio();
|
|
|
|
|
2010-06-24 04:11:54 +00:00
|
|
|
delete _mixer;
|
2010-06-20 20:19:53 +00:00
|
|
|
}
|
|
|
|
|
2010-06-24 04:11:54 +00:00
|
|
|
void SdlMixerManager::init() {
|
|
|
|
// Start SDL Audio subsystem
|
2010-06-23 19:34:07 +00:00
|
|
|
if (SDL_InitSubSystem(SDL_INIT_AUDIO) == -1) {
|
|
|
|
error("Could not initialize SDL: %s", SDL_GetError());
|
|
|
|
}
|
|
|
|
|
2010-06-24 04:11:54 +00:00
|
|
|
// Get the desired audio specs
|
2010-11-28 14:57:04 +00:00
|
|
|
SDL_AudioSpec desired = getAudioSpec(SAMPLES_PER_SEC);
|
2010-06-24 04:11:54 +00:00
|
|
|
|
|
|
|
// Start SDL audio with the desired specs
|
|
|
|
if (SDL_OpenAudio(&desired, &_obtainedRate) != 0) {
|
|
|
|
warning("Could not open audio device: %s", SDL_GetError());
|
|
|
|
|
|
|
|
_mixer = new Audio::MixerImpl(g_system, desired.freq);
|
|
|
|
assert(_mixer);
|
|
|
|
_mixer->setReady(false);
|
|
|
|
} else {
|
|
|
|
debug(1, "Output sample rate: %d Hz", _obtainedRate.freq);
|
|
|
|
|
|
|
|
_mixer = new Audio::MixerImpl(g_system, _obtainedRate.freq);
|
|
|
|
assert(_mixer);
|
|
|
|
_mixer->setReady(true);
|
|
|
|
|
|
|
|
startAudio();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-11-28 14:57:04 +00:00
|
|
|
SDL_AudioSpec SdlMixerManager::getAudioSpec(uint32 outputRate) {
|
2010-06-12 02:54:51 +00:00
|
|
|
SDL_AudioSpec desired;
|
|
|
|
|
|
|
|
// Determine the desired output sampling frequency.
|
|
|
|
uint32 samplesPerSec = 0;
|
|
|
|
if (ConfMan.hasKey("output_rate"))
|
|
|
|
samplesPerSec = ConfMan.getInt("output_rate");
|
|
|
|
if (samplesPerSec <= 0)
|
2010-11-28 14:57:04 +00:00
|
|
|
samplesPerSec = outputRate;
|
2010-06-12 02:54:51 +00:00
|
|
|
|
|
|
|
// Determine the sample buffer size. We want it to store enough data for
|
|
|
|
// at least 1/16th of a second (though at most 8192 samples). Note
|
|
|
|
// that it must be a power of two. So e.g. at 22050 Hz, we request a
|
|
|
|
// sample buffer size of 2048.
|
|
|
|
uint32 samples = 8192;
|
|
|
|
while (samples * 16 > samplesPerSec * 2)
|
|
|
|
samples >>= 1;
|
|
|
|
|
|
|
|
memset(&desired, 0, sizeof(desired));
|
|
|
|
desired.freq = samplesPerSec;
|
|
|
|
desired.format = AUDIO_S16SYS;
|
|
|
|
desired.channels = 2;
|
|
|
|
desired.samples = (uint16)samples;
|
2010-06-24 04:11:54 +00:00
|
|
|
desired.callback = sdlCallback;
|
2010-06-12 02:54:51 +00:00
|
|
|
desired.userdata = this;
|
|
|
|
|
2010-06-24 04:11:54 +00:00
|
|
|
return desired;
|
2010-06-12 02:54:51 +00:00
|
|
|
}
|
|
|
|
|
2010-06-24 04:11:54 +00:00
|
|
|
void SdlMixerManager::startAudio() {
|
|
|
|
// Start the sound system
|
|
|
|
SDL_PauseAudio(0);
|
2010-06-12 02:54:51 +00:00
|
|
|
}
|
|
|
|
|
2010-06-24 04:11:54 +00:00
|
|
|
void SdlMixerManager::callbackHandler(byte *samples, int len) {
|
|
|
|
assert(_mixer);
|
|
|
|
_mixer->mixCallback(samples, len);
|
2010-06-12 02:54:51 +00:00
|
|
|
}
|
|
|
|
|
2010-06-24 04:11:54 +00:00
|
|
|
void SdlMixerManager::sdlCallback(void *this_, byte *samples, int len) {
|
|
|
|
SdlMixerManager *manager = (SdlMixerManager *)this_;
|
|
|
|
assert(manager);
|
2010-06-12 02:54:51 +00:00
|
|
|
|
2010-06-24 04:11:54 +00:00
|
|
|
manager->callbackHandler(samples, len);
|
2010-06-12 02:54:51 +00:00
|
|
|
}
|
|
|
|
|
2010-06-29 01:08:36 +00:00
|
|
|
void SdlMixerManager::suspendAudio() {
|
|
|
|
SDL_CloseAudio();
|
|
|
|
_audioSuspended = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
int SdlMixerManager::resumeAudio() {
|
|
|
|
if (!_audioSuspended)
|
|
|
|
return -2;
|
|
|
|
if (SDL_OpenAudio(&_obtainedRate, NULL) < 0){
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
SDL_PauseAudio(0);
|
|
|
|
_audioSuspended = false;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2010-06-12 02:54:51 +00:00
|
|
|
#endif
|