2015-05-24 04:55:12 +00:00
|
|
|
// Copyright 2008 Dolphin Emulator Project
|
2015-05-17 23:08:10 +00:00
|
|
|
// Licensed under GPLv2+
|
2013-04-21 06:17:03 +00:00
|
|
|
// Refer to the license.txt file included.
|
2009-09-24 21:35:06 +00:00
|
|
|
|
2014-02-10 18:54:46 +00:00
|
|
|
#pragma once
|
2009-09-24 21:35:06 +00:00
|
|
|
|
2011-01-02 02:49:30 +00:00
|
|
|
#ifdef __APPLE__
|
2009-10-23 17:10:27 +00:00
|
|
|
#include <AudioUnit/AudioUnit.h>
|
2011-01-02 02:49:30 +00:00
|
|
|
#endif
|
2009-09-24 21:35:06 +00:00
|
|
|
|
2014-02-17 10:18:15 +00:00
|
|
|
#include "AudioCommon/SoundStream.h"
|
2009-09-24 21:35:06 +00:00
|
|
|
|
2014-03-18 14:37:45 +00:00
|
|
|
class CoreAudioSound final : public SoundStream
|
2009-09-24 21:35:06 +00:00
|
|
|
{
|
2011-01-02 02:49:30 +00:00
|
|
|
#ifdef __APPLE__
|
2009-09-24 21:35:06 +00:00
|
|
|
public:
|
2015-05-24 10:02:30 +00:00
|
|
|
bool Start() override;
|
|
|
|
void SetVolume(int volume) override;
|
|
|
|
void SoundLoop() override;
|
|
|
|
void Stop() override;
|
|
|
|
void Update() override;
|
2013-03-20 01:51:12 +00:00
|
|
|
|
2014-08-30 20:29:15 +00:00
|
|
|
static bool isValid()
|
|
|
|
{
|
2009-09-24 21:35:06 +00:00
|
|
|
return true;
|
|
|
|
}
|
2013-03-20 01:51:12 +00:00
|
|
|
|
2011-01-04 02:09:29 +00:00
|
|
|
private:
|
|
|
|
AudioUnit audioUnit;
|
2014-02-10 18:54:46 +00:00
|
|
|
int m_volume;
|
2011-02-02 18:21:20 +00:00
|
|
|
|
|
|
|
static OSStatus callback(void *inRefCon,
|
|
|
|
AudioUnitRenderActionFlags *ioActionFlags,
|
|
|
|
const AudioTimeStamp *inTimeStamp,
|
|
|
|
UInt32 inBusNumber, UInt32 inNumberFrames,
|
|
|
|
AudioBufferList *ioData);
|
2011-01-02 02:49:30 +00:00
|
|
|
#endif
|
2009-09-24 21:35:06 +00:00
|
|
|
};
|