From 998c9f15d1ca8c7489775ebcca51623b915988f1 Mon Sep 17 00:00:00 2001 From: John Stebbins Date: Fri, 8 Aug 2014 08:11:20 -0700 Subject: idct: remove call to ff_idctdsp_init from ff_MPV_common_init One step in untangling the mpegvideo code and fixing some problems in the order that initialization is being done in h263dec and h261dec. --- libavcodec/rv10.c | 1 + 1 file changed, 1 insertion(+) (limited to 'libavcodec/rv10.c') diff --git a/libavcodec/rv10.c b/libavcodec/rv10.c index 835a1aa332..e3e572099c 100644 --- a/libavcodec/rv10.c +++ b/libavcodec/rv10.c @@ -498,6 +498,7 @@ static av_cold int rv10_decode_init(AVCodecContext *avctx) avctx->pix_fmt = AV_PIX_FMT_YUV420P; + ff_mpv_idct_init(s); if ((ret = ff_MPV_common_init(s)) < 0) return ret; -- cgit v1.2.1