From 82d99e0b417a1f64821ceae3b5ce032dbb117b54 Mon Sep 17 00:00:00 2001 From: Vitor Sessak Date: Sun, 25 Sep 2011 20:07:33 +0200 Subject: g729dec: Fix warnings: MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit libavcodec/g729dec.c: In function ‘decode_frame’: libavcodec/g729dec.c:662: warning: passing argument 3 of ‘ff_g729_postfilter’ from incompatible pointer type libavcodec/g729postfilter.h:96: note: expected ‘int16_t *’ but argument is of type ‘int *’ Signed-off-by: Michael Niedermayer --- libavcodec/g729postfilter.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavcodec/g729postfilter.c') diff --git a/libavcodec/g729postfilter.c b/libavcodec/g729postfilter.c index 4f2f0c2c18..8cc29abbfa 100644 --- a/libavcodec/g729postfilter.c +++ b/libavcodec/g729postfilter.c @@ -511,7 +511,7 @@ static int16_t apply_tilt_comp(int16_t* out, int16_t* res_pst, int refl_coeff, return tmp; } -void ff_g729_postfilter(DSPContext *dsp, int16_t* ht_prev_data, int16_t* voicing, +void ff_g729_postfilter(DSPContext *dsp, int16_t* ht_prev_data, int* voicing, const int16_t *lp_filter_coeffs, int pitch_delay_int, int16_t* residual, int16_t* res_filter_data, int16_t* pos_filter_data, int16_t *speech, int subframe_size) -- cgit v1.2.3