2015-05-23 22:55:12 -06:00
|
|
|
// Copyright 2009 Dolphin Emulator Project
|
2015-05-17 17:08:10 -06:00
|
|
|
// Licensed under GPLv2+
|
2013-04-17 21:09:55 -06:00
|
|
|
// Refer to the license.txt file included.
|
2009-02-22 23:17:57 -07:00
|
|
|
|
2014-02-10 11:54:46 -07:00
|
|
|
#pragma once
|
2009-02-22 23:17:57 -07:00
|
|
|
|
2015-05-24 02:13:02 -06:00
|
|
|
#include <memory>
|
|
|
|
|
2014-02-17 03:18:15 -07:00
|
|
|
#include "AudioCommon/Mixer.h"
|
2014-09-07 19:06:58 -06:00
|
|
|
#include "Common/CommonTypes.h"
|
2009-02-22 23:17:57 -07:00
|
|
|
|
|
|
|
class SoundStream
|
|
|
|
{
|
|
|
|
protected:
|
2017-06-26 15:41:12 -06:00
|
|
|
std::unique_ptr<Mixer> m_mixer;
|
2009-03-27 08:26:44 -06:00
|
|
|
|
2013-10-28 23:23:17 -06:00
|
|
|
public:
|
2017-10-21 13:34:51 -06:00
|
|
|
SoundStream() : m_mixer(new Mixer(48000)) {}
|
2016-06-24 02:43:46 -06:00
|
|
|
virtual ~SoundStream() {}
|
|
|
|
static bool isValid() { return false; }
|
2017-06-26 15:41:12 -06:00
|
|
|
Mixer* GetMixer() const { return m_mixer.get(); }
|
2017-10-21 17:23:40 -06:00
|
|
|
virtual bool Init() { return false; }
|
2016-06-24 02:43:46 -06:00
|
|
|
virtual void SetVolume(int) {}
|
|
|
|
virtual void SoundLoop() {}
|
|
|
|
virtual void Update() {}
|
2017-10-21 17:23:40 -06:00
|
|
|
virtual bool SetRunning(bool running) { return false; }
|
2009-02-22 23:17:57 -07:00
|
|
|
};
|