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

66 lines
1.5 KiB
C++
Raw Normal View History

// Copyright 2013 Dolphin Emulator Project
// Licensed under GPLv2
// Refer to the license.txt file included.
#pragma once
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"
class SoundStream
{
protected:
2014-11-13 21:28:27 -05:00
CMixer* m_mixer;
// We set this to shut down the sound thread.
// 0=keep playing, 1=stop playing NOW.
volatile int threadData;
bool m_logAudio;
WaveFileWriter g_wave_writer;
bool m_muted;
public:
2014-11-13 21:28:27 -05:00
SoundStream(CMixer* mixer) : m_mixer(mixer), threadData(0), m_logAudio(false), m_muted(false) {}
virtual ~SoundStream() { delete m_mixer; }
static bool isValid() { return false; }
2014-11-13 21:28:27 -05:00
virtual CMixer* GetMixer() const { return m_mixer; }
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
virtual 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);
NOTICE_LOG(DSPHLE, "Starting Audio logging");
2014-08-30 16:29:15 -04:00
}
else
{
WARN_LOG(DSPHLE, "Audio logging already started");
}
}
2014-08-30 16:29:15 -04:00
virtual void StopLogAudio()
{
if (m_logAudio)
{
m_logAudio = false;
g_wave_writer.Stop();
2009-03-30 06:32:58 +00:00
NOTICE_LOG(DSPHLE, "Stopping Audio logging");
2014-08-30 16:29:15 -04:00
}
else
{
WARN_LOG(DSPHLE, "Audio logging already stopped");
}
}
};