aboutsummaryrefslogtreecommitdiff
path: root/source/soundux.h
diff options
context:
space:
mode:
authorAutechre2022-04-01 14:01:50 +0100
committerGitHub2022-04-01 14:01:50 +0100
commit23f759bc4bf2e39733296f7749e446418e3cd0f3 (patch)
treebc3681918953c382d1bcc808eb8d6c9916f1c1bf /source/soundux.h
parent962e034447a49cf506940bb995228fd23424ef38 (diff)
parent8252e54e14489eb217af8bd40bc63a37b408abea (diff)
downloadsnes9x2005-23f759bc4bf2e39733296f7749e446418e3cd0f3.tar.gz
snes9x2005-23f759bc4bf2e39733296f7749e446418e3cd0f3.tar.bz2
snes9x2005-23f759bc4bf2e39733296f7749e446418e3cd0f3.zip
Merge pull request #96 from jdgleaver/low-pass-filter
Snes9x2005 Non-Plus: Add optional low pass audio filter
Diffstat (limited to 'source/soundux.h')
-rw-r--r--source/soundux.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/soundux.h b/source/soundux.h
index 5cb4218..8a0e02e 100644
--- a/source/soundux.h
+++ b/source/soundux.h
@@ -135,6 +135,7 @@ void S9xFixEnvelope(int32_t channel, uint8_t gain, uint8_t adsr1, uint8_t adsr2)
void S9xStartSample(int32_t channel);
void S9xMixSamples(int16_t* buffer, int32_t sample_count);
+void S9xMixSamplesLowPass(int16_t* buffer, int32_t sample_count, int32_t low_pass_range);
void S9xSetPlaybackRate(uint32_t rate);
#endif
#endif