From 82bd04b170de00bd867e23f329c7c83f7801572c Mon Sep 17 00:00:00 2001 From: Diego Biurrun Date: Fri, 18 Jan 2013 23:58:47 +0100 Subject: rv34: Drop now unnecessary dsputil dependencies --- libavcodec/rv34.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libavcodec/rv34.c') diff --git a/libavcodec/rv34.c b/libavcodec/rv34.c index 111bbb0e50..4c98e9964f 100644 --- a/libavcodec/rv34.c +++ b/libavcodec/rv34.c @@ -1490,11 +1490,11 @@ av_cold int ff_rv34_decode_init(AVCodecContext *avctx) #if CONFIG_RV30_DECODER if (avctx->codec_id == AV_CODEC_ID_RV30) - ff_rv30dsp_init(&r->rdsp, &r->s.dsp); + ff_rv30dsp_init(&r->rdsp); #endif #if CONFIG_RV40_DECODER if (avctx->codec_id == AV_CODEC_ID_RV40) - ff_rv40dsp_init(&r->rdsp, &r->s.dsp); + ff_rv40dsp_init(&r->rdsp); #endif if ((ret = rv34_decoder_alloc(r)) < 0) -- cgit v1.2.3