Commit d2f9f8e0 authored by Justin Ruggles's avatar Justin Ruggles

lavr: correct the documentation for the ff_audio_resample() return value

parent 7f534d11
...@@ -62,7 +62,7 @@ void ff_audio_resample_free(ResampleContext **c); ...@@ -62,7 +62,7 @@ void ff_audio_resample_free(ResampleContext **c);
* @param dst destination audio data * @param dst destination audio data
* @param src source audio data * @param src source audio data
* @param consumed number of samples consumed from the source * @param consumed number of samples consumed from the source
* @return number of samples written to the destination * @return 0 on success, negative AVERROR code on failure
*/ */
int ff_audio_resample(ResampleContext *c, AudioData *dst, AudioData *src, int ff_audio_resample(ResampleContext *c, AudioData *dst, AudioData *src,
int *consumed); int *consumed);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment