mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
Document audio_resample_close().
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
2034ba08ec
commit
7562101a9f
@ -3257,6 +3257,13 @@ ReSampleContext *av_audio_resample_init(int output_channels, int input_channels,
|
|||||||
int linear, double cutoff);
|
int linear, double cutoff);
|
||||||
|
|
||||||
int audio_resample(ReSampleContext *s, short *output, short *input, int nb_samples);
|
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);
|
void audio_resample_close(ReSampleContext *s);
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user