Browse Source

Document audio_resample_close().

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n0.8
Stefano Sabatini Michael Niedermayer 15 years ago
parent
commit
7562101a9f
1 changed files with 7 additions and 0 deletions
  1. +7
    -0
      libavcodec/avcodec.h

+ 7
- 0
libavcodec/avcodec.h View File

@@ -3257,6 +3257,13 @@ ReSampleContext *av_audio_resample_init(int output_channels, int input_channels,
int linear, double cutoff);

int audio_resample(ReSampleContext *s, short *output, short *input, int nb_samples);

/**
* Free resample context s.
*
* @param s a non-NULL pointer to a resample context previously
* created with av_audio_resample_init()
*/
void audio_resample_close(ReSampleContext *s);




Loading…
Cancel
Save