[FFmpeg-cvslog] g729dec: fix use of deprecated functions.
Michael Niedermayer
git at videolan.org
Thu Feb 16 23:30:15 CET 2012
ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Thu Feb 16 23:02:07 2012 +0100| [934abf6ff88c386918b0b57584bf81c4d8a0ea49] | committer: Michael Niedermayer
g729dec: fix use of deprecated functions.
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=934abf6ff88c386918b0b57584bf81c4d8a0ea49
---
libavcodec/g729dec.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/libavcodec/g729dec.c b/libavcodec/g729dec.c
index 191794b..bdc9b68 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);
More information about the ffmpeg-cvslog
mailing list