I have no idea what's going on

This commit is contained in:
tildearrow 2025-03-03 17:18:52 -05:00
parent acdce2c795
commit 95b1085aed
5 changed files with 18 additions and 5 deletions

View file

@ -658,6 +658,15 @@ class DivDispatch {
*/
virtual void acquireDirect(blip_buffer_t** bb, size_t off, size_t len);
/**
* post-process a rendered sound buffer.
* @param buf pointers to output buffers.
* @param outIndex the output index.
* @param len the number of samples in the buffer.
* @param sampleRate the current audio output rate (usually 44100 or 48000).
*/
virtual void postProcess(short* buf, int outIndex, size_t len, int sampleRate);
/**
* fill a write stream with data (e.g. for software-mixed PCM).
* @param stream the write stream.