ppsspp/audio/wav_read.h
2012-10-30 13:20:55 +01:00

8 lines
230 B
C

#include "base/basictypes.h"
// Allocates a buffer that should be freed using free().
short *wav_read(const char *filename,
int *num_samples, int *sample_rate,
int *num_channels);
// TODO: Non-allocating version.