diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-08-15 02:08:59 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-08-15 02:25:14 +0200 |
commit | 2fd87a3d7895ce36e558a306d03e33697d456086 (patch) | |
tree | 99a9b5ef8a07475a55d89050993a0071e9ea4008 /libavcodec/rv10.c | |
parent | 8b6cbc3c3319f7942d679d6f6319971c102cfbd3 (diff) | |
parent | 998c9f15d1ca8c7489775ebcca51623b915988f1 (diff) | |
download | ffmpeg-2fd87a3d7895ce36e558a306d03e33697d456086.tar.gz |
Merge commit '998c9f15d1ca8c7489775ebcca51623b915988f1'
* commit '998c9f15d1ca8c7489775ebcca51623b915988f1':
idct: remove call to ff_idctdsp_init from ff_MPV_common_init
Conflicts:
libavcodec/dnxhdenc.c
libavcodec/h263dec.c
libavcodec/mpegvideo.c
libavcodec/mpegvideo.h
Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/rv10.c')
-rw-r--r-- | libavcodec/rv10.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/rv10.c b/libavcodec/rv10.c index be6ca84dc3..985644d7f7 100644 --- a/libavcodec/rv10.c +++ b/libavcodec/rv10.c @@ -517,6 +517,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; |