From 5a03a3d99822ff4ce8c1a7e3a1aa9c3c228995c4 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Thu, 16 Feb 2012 19:55:16 +0100 Subject: [PATCH] proresdec2: use ff_dsputil_init() avoid deprecated ff_ less variant. Signed-off-by: Michael Niedermayer --- libavcodec/proresdec2.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/proresdec2.c b/libavcodec/proresdec2.c index 6ffc7cee28..b48259a3cd 100644 --- a/libavcodec/proresdec2.c +++ b/libavcodec/proresdec2.c @@ -69,7 +69,7 @@ static av_cold int decode_init(AVCodecContext *avctx) avctx->bits_per_raw_sample = 10; - dsputil_init(&ctx->dsp, avctx); + ff_dsputil_init(&ctx->dsp, avctx); ff_proresdsp_init(&ctx->prodsp, avctx); avctx->coded_frame = &ctx->frame;