Files
dolphin/Source/Core/AudioCommon/SoundStream.h
T

65 lines
1.4 KiB
C++
Raw Normal View History

// Copyright 2009 Dolphin Emulator Project
2015-05-18 01:08:10 +02:00
// Licensed under GPLv2+
// Refer to the license.txt file included.
#pragma once
2015-05-24 04:13:02 -04:00
#include <memory>
2014-02-17 05:18:15 -05:00
#include "AudioCommon/Mixer.h"
#include "AudioCommon/WaveFile.h"
2014-09-07 20:06:58 -05:00
#include "Common/CommonTypes.h"
#include "Common/Logging/Log.h"
class SoundStream
{
protected:
2015-05-24 04:13:02 -04:00
std::unique_ptr<CMixer> m_mixer;
bool m_logAudio;
WaveFileWriter g_wave_writer;
bool m_muted;
public:
2015-05-24 04:13:02 -04:00
SoundStream() : m_mixer(new CMixer(48000)), m_logAudio(false), m_muted(false) {}
virtual ~SoundStream() { }
static bool isValid() { return false; }
2015-05-24 05:03:14 -04:00
CMixer* GetMixer() const { return m_mixer.get(); }
virtual bool Start() { return false; }
virtual void SetVolume(int) {}
virtual void SoundLoop() {}
virtual void Stop() {}
virtual void Update() {}
virtual void Clear(bool mute) { m_muted = mute; }
bool IsMuted() const { return m_muted; }
2014-08-30 16:29:15 -04:00
void StartLogAudio(const std::string& filename)
2014-08-30 16:29:15 -04:00
{
2014-11-13 21:28:27 -05:00
if (!m_logAudio)
2014-08-30 16:29:15 -04:00
{
m_logAudio = true;
g_wave_writer.Start(filename, m_mixer->GetSampleRate());
g_wave_writer.SetSkipSilence(false);
2015-08-09 21:36:00 -04:00
NOTICE_LOG(AUDIO, "Starting Audio logging");
2014-08-30 16:29:15 -04:00
}
else
{
2015-08-09 21:36:00 -04:00
WARN_LOG(AUDIO, "Audio logging already started");
}
}
void StopLogAudio()
2014-08-30 16:29:15 -04:00
{
if (m_logAudio)
{
m_logAudio = false;
g_wave_writer.Stop();
2015-08-09 21:36:00 -04:00
NOTICE_LOG(AUDIO, "Stopping Audio logging");
2014-08-30 16:29:15 -04:00
}
else
{
2015-08-09 21:36:00 -04:00
WARN_LOG(AUDIO, "Audio logging already stopped");
}
}
};