ppsspp/audio/wav_read.h
2012-03-24 23:39:19 +01:00

8 lines
246 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.