summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/main.h
diff options
context:
space:
mode:
author Olivier Galibert <galibert@pobox.com>2025-04-14 11:31:53 +0200
committer Olivier Galibert <galibert@pobox.com>2025-04-27 22:23:20 +0200
commitd0f1c15a0f6df2dd51a754cb46e6175b7079c8f2 (patch)
treebe35c94340442af08c316a8679089ee68e119fac /src/emu/main.h
parentec636faeba5c5841c5a4a35b7c9dc2f06a00f538 (diff)
New sound infrastructure.
Should be added soon: - mute - speaker/microphone resampling To be added a little later: - compression - reverb Needs to be added by someone else: - coreaudio - direct - portaudio - xaudio2 - js
Diffstat (limited to 'src/emu/main.h')
-rw-r--r--src/emu/main.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/emu/main.h b/src/emu/main.h
index 78553ca5236..a62ccb46211 100644
--- a/src/emu/main.h
+++ b/src/emu/main.h
@@ -13,6 +13,7 @@
#include "emufwd.h"
+#include <map>
#include <memory>
#include <string>
#include <vector>
@@ -57,7 +58,7 @@ public:
static bool draw_user_interface(running_machine& machine);
static void periodic_check();
static bool frame_hook();
- static void sound_hook();
+ static void sound_hook(const std::map<std::string, std::vector<std::pair<const float *, int>>> &sound); // Can't use sound_stream::sample_t sadly
static void layout_script_cb(layout_file &file, const char *script);
static bool standalone();
};