]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/acelp_pitch_delay.h
Postpone API-incompatible changes until the next bump.
[ffmpeg] / libavcodec / acelp_pitch_delay.h
index e5410bba7f57487aebefeb94e399343762f45ccc..7b5b33d9b49aa694ce643c0b7e008ea396170409 100644 (file)
@@ -24,7 +24,8 @@
 #define AVCODEC_ACELP_PITCH_DELAY_H
 
 #include <stdint.h>
-#include "dsputil.h"
+
+#include "audiodsp.h"
 
 #define PITCH_DELAY_MIN             20
 #define PITCH_DELAY_MAX             143
@@ -139,7 +140,7 @@ void ff_acelp_update_past_gain(
 /**
  * @brief Decode the adaptive codebook gain and add
  *        correction (4.1.5 and 3.9.1 of G.729).
- * @param dsp initialized dsputil context
+ * @param adsp initialized audio DSP context
  * @param gain_corr_factor gain correction factor (2.13)
  * @param fc_v fixed-codebook vector (2.13)
  * @param mr_energy mean innovation energy and fixed-point correction (7.13)
@@ -208,7 +209,7 @@ void ff_acelp_update_past_gain(
  * @remark The routine is used in G.729 and AMR (all modes).
  */
 int16_t ff_acelp_decode_gain_code(
-    DSPContext *dsp,
+    AudioDSPContext *adsp,
     int gain_corr_factor,
     const int16_t* fc_v,
     int mr_energy,