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/eatqi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavcodec/eatqi.c') diff --git a/libavcodec/eatqi.c b/libavcodec/eatqi.c index 179b84d6a0..ca4e98b6bf 100644 --- a/libavcodec/eatqi.c +++ b/libavcodec/eatqi.c @@ -48,7 +48,7 @@ static av_cold int tqi_decode_init(AVCodecContext *avctx) s->avctx = avctx; if(avctx->idct_algo==FF_IDCT_AUTO) avctx->idct_algo=FF_IDCT_EA; - dsputil_init(&s->dsp, avctx); + ff_dsputil_init(&s->dsp, avctx); ff_init_scantable(s->dsp.idct_permutation, &s->intra_scantable, ff_zigzag_direct); s->qscale = 1; avctx->time_base = (AVRational){1, 15}; -- cgit v1.2.3