2013-04-18 03:09:55 +00:00
|
|
|
// Copyright 2013 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2
|
|
|
|
// Refer to the license.txt file included.
|
2010-11-14 23:56:26 +00:00
|
|
|
|
2014-02-10 18:54:46 +00:00
|
|
|
#pragma once
|
2010-11-14 23:56:26 +00:00
|
|
|
|
2013-10-17 04:32:18 +00:00
|
|
|
#include <stdlib.h>
|
2010-11-14 23:56:26 +00:00
|
|
|
#include "SoundStream.h"
|
|
|
|
|
|
|
|
#define BUF_SIZE (48000 * 4 / 32)
|
|
|
|
|
|
|
|
class NullSound : public SoundStream
|
|
|
|
{
|
2013-03-20 01:51:12 +00:00
|
|
|
// playback position
|
|
|
|
short realtimeBuffer[BUF_SIZE / sizeof(short)];
|
2010-11-14 23:56:26 +00:00
|
|
|
|
|
|
|
public:
|
2013-10-19 09:27:57 +00:00
|
|
|
NullSound(CMixer *mixer)
|
2010-11-14 23:56:26 +00:00
|
|
|
: SoundStream(mixer)
|
|
|
|
{}
|
|
|
|
|
2013-03-20 01:51:12 +00:00
|
|
|
virtual ~NullSound() {}
|
|
|
|
|
2010-11-14 23:56:26 +00:00
|
|
|
virtual bool Start();
|
2013-03-20 01:51:12 +00:00
|
|
|
virtual void SoundLoop();
|
2010-11-14 23:56:26 +00:00
|
|
|
virtual void SetVolume(int volume);
|
2013-03-20 01:51:12 +00:00
|
|
|
virtual void Stop();
|
2010-11-14 23:56:26 +00:00
|
|
|
virtual void Clear(bool mute);
|
2013-03-20 01:51:12 +00:00
|
|
|
static bool isValid() { return true; }
|
|
|
|
virtual bool usesMixer() const { return true; }
|
|
|
|
virtual void Update();
|
2010-11-14 23:56:26 +00:00
|
|
|
};
|