From 9cf0841ef35239660fc313314778414e2828f025 Mon Sep 17 00:00:00 2001 From: Martin Storsjö Date: Wed, 15 Feb 2012 12:06:44 +0200 Subject: dsputil: Add ff_ prefix to the dsputil*_init* functions MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Martin Storsjö --- libavcodec/mdec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavcodec/mdec.c') diff --git a/libavcodec/mdec.c b/libavcodec/mdec.c index a4e2020317..3ce24641d4 100644 --- a/libavcodec/mdec.c +++ b/libavcodec/mdec.c @@ -214,7 +214,7 @@ static int decode_frame(AVCodecContext *avctx, static av_cold void mdec_common_init(AVCodecContext *avctx){ MDECContext * const a = avctx->priv_data; - dsputil_init(&a->dsp, avctx); + ff_dsputil_init(&a->dsp, avctx); a->mb_width = (avctx->coded_width + 15) / 16; a->mb_height = (avctx->coded_height + 15) / 16; -- cgit v1.2.3