summaryrefslogtreecommitdiff
path: root/Source/Core/AudioCommon/NullSoundStream.h
blob: a3d0393e135d7353ea598511e6bd01fce469675b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// Copyright 2008 Dolphin Emulator Project
// Licensed under GPLv2+
// Refer to the license.txt file included.

#pragma once

#include <array>
#include "AudioCommon/SoundStream.h"

class NullSound final : public SoundStream
{
public:
  bool Start() override;
  void SoundLoop() override;
  void SetVolume(int volume) override;
  void Stop() override;
  void Clear(bool mute) override;
  void Update() override;

  static bool isValid() { return true; }
private:
  static constexpr size_t BUFFER_SIZE = 48000 * 4 / 32;

  // Playback position
  std::array<short, BUFFER_SIZE / sizeof(short)> m_realtime_buffer;
};