]> rtime.felk.cvut.cz Git - frescor/ffmpeg.git/blobdiff - libavcodec/acelp_pitch_delay.h
Implement ff_decode_pitch_lag() that is used by both AMR and SIPR.
[frescor/ffmpeg.git] / libavcodec / acelp_pitch_delay.h
index 42307d2bbab4e4cab344a337d4c35afd064f328b..2413145bebf21dfe187019bd7f5fe771c9768885 100644 (file)
@@ -234,4 +234,22 @@ float ff_amr_set_fixed_gain(float fixed_gain_factor, float fixed_mean_energy,
                             float *prediction_error, float energy_mean,
                             const float *pred_table);
 
+
+/**
+ * Decode the adaptive codebook index to the integer and fractional parts
+ * of the pitch lag for one subframe at 1/3 fractional precision.
+ *
+ * The choice of pitch lag is described in 3GPP TS 26.090 section 5.6.1.
+ *
+ * @param lag_int             integer part of pitch lag of the current subframe
+ * @param lag_frac            fractional part of pitch lag of the current subframe
+ * @param pitch_index         parsed adaptive codebook (pitch) index
+ * @param prev_lag_int        integer part of pitch lag for the previous subframe
+ * @param subframe            current subframe number
+ * @param third_as_first      treat the third frame the same way as the first
+ */
+void ff_decode_pitch_lag(int *lag_int, int *lag_frac, int pitch_index,
+                         const int prev_lag_int, const int subframe,
+                         int third_as_first, int resolution);
+
 #endif /* AVCODEC_ACELP_PITCH_DELAY_H */