decoder/flac: pass number of frames to flac_convert()

This commit is contained in:
Max Kellermann
2016-07-11 23:24:48 +02:00
parent 1c818ef0a0
commit 62e96e9a58
3 changed files with 22 additions and 21 deletions

View File

@@ -24,10 +24,12 @@
#include <FLAC/ordinals.h>
#include <stddef.h>
void
flac_convert(void *dest,
unsigned int num_channels, SampleFormat sample_format,
const FLAC__int32 *const buf[],
unsigned int position, unsigned int end);
size_t n_frames);
#endif