2009-07-28 21:32:10 +00:00
|
|
|
// Copyright (C) 2003 Dolphin Project.
|
2009-03-26 09:29:14 +00:00
|
|
|
|
|
|
|
// 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, version 2.0.
|
|
|
|
|
|
|
|
// 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 2.0 for more details.
|
|
|
|
|
|
|
|
// A copy of the GPL 2.0 should have been included with the program.
|
|
|
|
// If not, see http://www.gnu.org/licenses/
|
|
|
|
|
|
|
|
// Official SVN repository and contact information can be found at
|
|
|
|
// http://code.google.com/p/dolphin-emu/
|
|
|
|
|
2009-03-28 08:57:34 +00:00
|
|
|
#ifndef _MIXER_H_
|
|
|
|
#define _MIXER_H_
|
2009-03-26 09:29:14 +00:00
|
|
|
|
2009-12-23 15:34:14 +00:00
|
|
|
// 16 bit Stereo
|
2009-12-25 11:59:04 +00:00
|
|
|
#define MAX_SAMPLES (1024 * 8)
|
2009-12-23 15:34:14 +00:00
|
|
|
#define INDEX_MASK (MAX_SAMPLES * 2 - 1)
|
2009-12-25 11:59:04 +00:00
|
|
|
#define RESERVED_SAMPLES (256)
|
2009-03-26 09:29:14 +00:00
|
|
|
|
|
|
|
class CMixer {
|
|
|
|
|
|
|
|
public:
|
2009-12-25 11:59:04 +00:00
|
|
|
CMixer(unsigned int AISampleRate = 48000, unsigned int DACSampleRate = 48000)
|
2009-12-23 15:34:14 +00:00
|
|
|
: m_aiSampleRate(AISampleRate)
|
2009-12-25 11:59:04 +00:00
|
|
|
, m_dacSampleRate(DACSampleRate)
|
2009-12-22 07:26:30 +00:00
|
|
|
, m_bits(16)
|
|
|
|
, m_channels(2)
|
|
|
|
, m_HLEready(false)
|
2009-12-23 15:34:14 +00:00
|
|
|
, m_numSamples(0)
|
|
|
|
, m_indexW(0)
|
|
|
|
, m_indexR(0)
|
|
|
|
{
|
2009-12-25 11:59:04 +00:00
|
|
|
// AyuanX: The internal (Core & DSP) sample rate is fixed at 32KHz
|
|
|
|
// So when AI/DAC sample rate differs than 32KHz, we have to do re-sampling
|
2010-07-16 09:22:53 +00:00
|
|
|
// I prefer speed so let's do down-sampling instead of up-sampling
|
2009-12-23 15:34:14 +00:00
|
|
|
// If you like better sound than speed, feel free to implement the up-sampling code
|
2009-12-25 11:59:04 +00:00
|
|
|
m_sampleRate = 32000;
|
2009-12-25 22:10:56 +00:00
|
|
|
INFO_LOG(AUDIO_INTERFACE, "Mixer is initialized (AISampleRate:%i, DACSampleRate:%i)", AISampleRate, DACSampleRate);
|
2009-12-23 15:34:14 +00:00
|
|
|
}
|
2009-03-26 09:29:14 +00:00
|
|
|
|
2010-07-23 23:51:34 +00:00
|
|
|
virtual ~CMixer() {}
|
|
|
|
|
2009-03-26 09:29:14 +00:00
|
|
|
// Called from audio threads
|
2009-12-23 15:34:14 +00:00
|
|
|
virtual unsigned int Mix(short* samples, unsigned int numSamples);
|
2009-12-25 11:59:04 +00:00
|
|
|
virtual void Premix(short *samples, unsigned int numSamples) {}
|
2009-12-23 15:34:14 +00:00
|
|
|
unsigned int GetNumSamples();
|
2009-12-20 02:23:26 +00:00
|
|
|
|
2009-03-26 09:29:14 +00:00
|
|
|
// Called from main thread
|
2009-12-25 11:59:04 +00:00
|
|
|
virtual void PushSamples(short* samples, unsigned int num_samples);
|
2009-12-23 15:34:14 +00:00
|
|
|
unsigned int GetSampleRate() {return m_sampleRate;}
|
2009-06-12 14:40:50 +00:00
|
|
|
|
2009-03-26 09:29:14 +00:00
|
|
|
void SetThrottle(bool use) { m_throttle = use;}
|
2009-03-30 09:55:50 +00:00
|
|
|
void SetDTKMusic(bool use) { m_EnableDTKMusic = use;}
|
2009-03-26 09:29:14 +00:00
|
|
|
|
2009-03-28 08:57:34 +00:00
|
|
|
// TODO: do we need this
|
2009-03-26 09:29:14 +00:00
|
|
|
bool IsHLEReady() { return m_HLEready;}
|
|
|
|
void SetHLEReady(bool ready) { m_HLEready = ready;}
|
2009-03-28 08:57:34 +00:00
|
|
|
// ---------------------
|
2009-03-26 09:29:14 +00:00
|
|
|
|
|
|
|
protected:
|
2009-12-23 15:34:14 +00:00
|
|
|
unsigned int m_sampleRate;
|
|
|
|
unsigned int m_aiSampleRate;
|
2009-12-25 11:59:04 +00:00
|
|
|
unsigned int m_dacSampleRate;
|
2009-03-26 09:29:14 +00:00
|
|
|
int m_bits;
|
|
|
|
int m_channels;
|
|
|
|
|
|
|
|
bool m_HLEready;
|
|
|
|
|
2009-03-30 09:55:50 +00:00
|
|
|
bool m_EnableDTKMusic;
|
2009-03-26 09:29:14 +00:00
|
|
|
bool m_throttle;
|
2009-12-23 15:34:14 +00:00
|
|
|
|
|
|
|
short m_buffer[MAX_SAMPLES * 2];
|
2010-01-18 18:21:27 +00:00
|
|
|
volatile u32 m_numSamples;
|
2009-12-23 15:34:14 +00:00
|
|
|
u32 m_indexW;
|
|
|
|
u32 m_indexR;
|
|
|
|
|
2009-03-26 09:29:14 +00:00
|
|
|
private:
|
|
|
|
|
|
|
|
};
|
|
|
|
|
2009-03-28 08:57:34 +00:00
|
|
|
#endif // _MIXER_H_
|