blob: c7f231a9d92d724580c0ac0a0b1d39e34905b3f4 (
plain) (
blame)
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
27
28
|
// license:BSD-3-Clause
// copyright-holders:Olivier Galibert
#include "emu.h"
#include "reverb.h"
#include "xmlfile.h"
audio_effect_reverb::audio_effect_reverb(u32 sample_rate, audio_effect *def) : audio_effect(sample_rate, def)
{
}
void audio_effect_reverb::config_load(util::xml::data_node const *ef_node)
{
}
void audio_effect_reverb::config_save(util::xml::data_node *ef_node) const
{
}
void audio_effect_reverb::default_changed()
{
}
void audio_effect_reverb::apply(const emu::detail::output_buffer_flat<sample_t> &src, emu::detail::output_buffer_flat<sample_t> &dest)
{
copy(src, dest);
}
|