diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2012-02-16 23:02:07 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-02-16 23:02:07 +0100 |
commit | 934abf6ff88c386918b0b57584bf81c4d8a0ea49 (patch) | |
tree | 0e52030fe791948384fd0c22010a88a74f0a072f /libavcodec | |
parent | ad21c05172207610ceb896d0bd495e7d6d7e695a (diff) | |
download | ffmpeg-934abf6ff88c386918b0b57584bf81c4d8a0ea49.tar.gz |
g729dec: fix use of deprecated functions.
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/g729dec.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); |