]> git.sesse.net Git - ffmpeg/blobdiff - libavresample/resample.h
lavr: do not pass consumed samples as a parameter to ff_audio_resample()
[ffmpeg] / libavresample / resample.h
index c16186ed53c18d0c38b6a1c8c7f3c1f20669547d..7534e26ad4efaab1bf60b689d3d26bcc3fd06f8e 100644 (file)
@@ -61,10 +61,8 @@ void ff_audio_resample_free(ResampleContext **c);
  * @param c         ResampleContext
  * @param dst       destination audio data
  * @param src       source audio data
- * @param consumed  number of samples consumed from the source
  * @return          0 on success, negative AVERROR code on failure
  */
-int ff_audio_resample(ResampleContext *c, AudioData *dst, AudioData *src,
-                      int *consumed);
+int ff_audio_resample(ResampleContext *c, AudioData *dst, AudioData *src);
 
 #endif /* AVRESAMPLE_RESAMPLE_H */