Browse Source

doc/examples: make fill_samples static.

This is required to build with FFmpeg compilation options.
tags/n2.2-rc1
Clément Bœsch 11 years ago
parent
commit
a8ac2a1530
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      doc/examples/resampling_audio.c

+ 1
- 1
doc/examples/resampling_audio.c View File

@@ -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