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