Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2013-01-19 02:58:47 +0400
committerDiego Biurrun <diego@biurrun.de>2013-02-06 14:30:54 +0400
commit82bd04b170de00bd867e23f329c7c83f7801572c (patch)
treeedd8d09cde1d20ae77d8e69b556865b954433bae /libavcodec/rv34.c
parent79dad2a932534d1155079f937649e099f9e5cc27 (diff)
rv34: Drop now unnecessary dsputil dependencies
Diffstat (limited to 'libavcodec/rv34.c')
-rw-r--r--libavcodec/rv34.c4
1 files changed, 2 insertions, 2 deletions
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)