ppsspp/UI/AudioCommon.h
Henrik Rydgård 349b73acec
Move the resampler usage to a common file, AudioCommon. (#17176)
* Move the resampler usage to a common file, AudioCommon.

Ports that don't want to use the resampler can now simply exclude that
file and provide their own implementation. Next up, libretro will be
converted to do it that way.

* Android.mk typo

* libretro makefile fix

* libretro buildfix

* libretro: try a different approach for the temporary solution

* duh

* double duh
2023-03-24 17:19:57 +01:00

6 lines
101 B
C++

#pragma once
#include <cstdint>
int __AudioMix(int16_t *outstereo, int numFrames, int sampleRate);