mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-23 13:30:02 +00:00
349b73acec
* 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
6 lines
101 B
C++
6 lines
101 B
C++
#pragma once
|
|
|
|
#include <cstdint>
|
|
|
|
int __AudioMix(int16_t *outstereo, int numFrames, int sampleRate);
|