From 934abf6ff88c386918b0b57584bf81c4d8a0ea49 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Thu, 16 Feb 2012 23:02:07 +0100 Subject: [PATCH] g729dec: fix use of deprecated functions. Signed-off-by: Michael Niedermayer --- libavcodec/g729dec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/g729dec.c b/libavcodec/g729dec.c index 191794b6e7..bdc9b68dbf 100644 --- a/libavcodec/g729dec.c +++ b/libavcodec/g729dec.c @@ -378,7 +378,7 @@ static av_cold int decoder_init(AVCodecContext * avctx) for(i=0; i<4; i++) ctx->quant_energy[i] = -14336; // -14 in (5.10) - dsputil_init(&ctx->dsp, avctx); + ff_dsputil_init(&ctx->dsp, avctx); ctx->dsp.scalarproduct_int16 = scalarproduct_int16_c; avcodec_get_frame_defaults(&ctx->frame);