diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2011-10-14 19:30:10 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-10-14 19:48:41 +0200 |
commit | 337496980e8ea75a123921a5a215ae8a962bf128 (patch) | |
tree | c9a657ba9d79e1adf971fda72048a368e96f39dc /libavcodec/proresdec.c | |
parent | 530d8529d05da930787944df960bebadd1f14e3b (diff) | |
download | ffmpeg-337496980e8ea75a123921a5a215ae8a962bf128.tar.gz |
prores: use C idct for fate as the SSE code is not matching the SSE* code down at the bits
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/proresdec.c')
-rw-r--r-- | libavcodec/proresdec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/proresdec.c b/libavcodec/proresdec.c index 51807bc7dd..a96af4fa9f 100644 --- a/libavcodec/proresdec.c +++ b/libavcodec/proresdec.c @@ -70,7 +70,7 @@ static av_cold int decode_init(AVCodecContext *avctx) avctx->bits_per_raw_sample = 10; dsputil_init(&ctx->dsp, avctx); - ff_proresdsp_init(&ctx->prodsp); + ff_proresdsp_init(&ctx->prodsp, avctx); avctx->coded_frame = &ctx->frame; ctx->frame.type = FF_I_TYPE; |