doc/examples: make fill_samples static.

This is required to build with FFmpeg compilation options.
pull/49/head
Clément Bœsch 11 years ago
parent 245931885f
commit a8ac2a1530
  1. 2
      doc/examples/resampling_audio.c

@ -62,7 +62,7 @@ static int get_format_from_sample_fmt(const char **fmt,
/**
* Fill dst buffer with nb_samples, generated starting from t.
*/
void fill_samples(double *dst, int nb_samples, int nb_channels, int sample_rate, double *t)
static void fill_samples(double *dst, int nb_samples, int nb_channels, int sample_rate, double *t)
{
int i, j;
double tincr = 1.0 / sample_rate, *dstp = dst;

Loading…
Cancel
Save