chore(fmod): add files from Chensne/DragonNest

This commit is contained in:
phaneron 2025-08-19 10:12:56 -04:00
commit 50fb3c6b1c
544 changed files with 315778 additions and 0 deletions

View file

@ -0,0 +1,21 @@
#ifndef _FMOD_DSP_RESAMPLER_MULTIINPUT_H
#define _FMOD_DSP_RESAMPLER_MULTIINPUT_H
#include "fmod_settings.h"
#include "fmod_dsp_filter.h"
#include "fmod_dsp_resampler.h"
namespace FMOD
{
class DSPResamplerMultiInput : public DSPResampler
{
public:
FMOD_RESULT read(float **outbuffer, int *outchannels, unsigned int *length, FMOD_SPEAKERMODE speakermode, int speakermodechannels, unsigned int tick);
FMOD_RESULT addInput(DSPI *target);
};
}
#endif