diff options
author | Roland Reichwein <mail@reichwein.it> | 2025-01-04 18:42:35 +0100 |
---|---|---|
committer | Roland Reichwein <mail@reichwein.it> | 2025-01-04 18:42:35 +0100 |
commit | 0d603dc0d8f3a1fcc4d348114a6a0638608dad73 (patch) | |
tree | 0a59893471ad42e7eed1a8a2d90c723b4f632c42 /PCM.cpp | |
parent | dbe72ddb8eb215de6d38cd01ed201704ab315a4f (diff) |
Output switch
Diffstat (limited to 'PCM.cpp')
-rw-r--r-- | PCM.cpp | 26 |
1 files changed, 18 insertions, 8 deletions
@@ -1,6 +1,8 @@ #include "PCM.h" -PCM::PCM(): m_phase(1000000) +PCM::PCM(Config& config): + m_config(config), + m_phase(1000000) { // prepare the sample std::string data_s = Reichwein::File::getFile("media/click.s16le"); @@ -80,16 +82,24 @@ void PCM::generate() { int i; - for (i = 0; i < nframes; i++) { - if (m_phase < 0 || m_phase >= m_data.size()) - { + if (m_config.get_output() == 0) { + for (i = 0; i < nframes; i++) { buffer[i] = 0; } - else - { - buffer[i] = m_data[m_phase]; + m_phase += nframes; + } else { + + for (i = 0; i < nframes; i++) { + if (m_phase < 0 || m_phase >= m_data.size()) + { + buffer[i] = 0; + } + else + { + buffer[i] = m_data[m_phase]; + } + m_phase++; } - m_phase++; } } |