mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-15 05:47:56 -07:00
35ee8a1362
Instead of creating the mixer externally and then passing it in, it can just be made within the class.
40 lines
730 B
C++
40 lines
730 B
C++
// Copyright 2013 Dolphin Emulator Project
|
|
// Licensed under GPLv2
|
|
// Refer to the license.txt file included.
|
|
|
|
#pragma once
|
|
|
|
#ifdef __APPLE__
|
|
#include <AudioUnit/AudioUnit.h>
|
|
#endif
|
|
|
|
#include "AudioCommon/SoundStream.h"
|
|
|
|
class CoreAudioSound final : public SoundStream
|
|
{
|
|
#ifdef __APPLE__
|
|
public:
|
|
virtual bool Start();
|
|
virtual void SetVolume(int volume);
|
|
virtual void SoundLoop();
|
|
virtual void Stop();
|
|
|
|
static bool isValid()
|
|
{
|
|
return true;
|
|
}
|
|
|
|
virtual void Update();
|
|
|
|
private:
|
|
AudioUnit audioUnit;
|
|
int m_volume;
|
|
|
|
static OSStatus callback(void *inRefCon,
|
|
AudioUnitRenderActionFlags *ioActionFlags,
|
|
const AudioTimeStamp *inTimeStamp,
|
|
UInt32 inBusNumber, UInt32 inNumberFrames,
|
|
AudioBufferList *ioData);
|
|
#endif
|
|
};
|