summaryrefslogtreecommitdiff
path: root/libavcodec/proresdec_lgpl.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2011-10-14 19:30:10 +0200
committerMichael Niedermayer <michaelni@gmx.at>2011-10-14 19:48:41 +0200
commit337496980e8ea75a123921a5a215ae8a962bf128 (patch)
treec9a657ba9d79e1adf971fda72048a368e96f39dc /libavcodec/proresdec_lgpl.c
parent530d8529d05da930787944df960bebadd1f14e3b (diff)
downloadffmpeg-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_lgpl.c')
-rw-r--r--libavcodec/proresdec_lgpl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/proresdec_lgpl.c b/libavcodec/proresdec_lgpl.c
index 156f87530a..d0f00a7293 100644
--- a/libavcodec/proresdec_lgpl.c
+++ b/libavcodec/proresdec_lgpl.c
@@ -107,7 +107,7 @@ static av_cold int decode_init(AVCodecContext *avctx)
avctx->pix_fmt = PIX_FMT_YUV422P10; // set default pixel format
avctx->bits_per_raw_sample = PRORES_BITS_PER_SAMPLE;
- ff_proresdsp_init(&ctx->dsp);
+ ff_proresdsp_init(&ctx->dsp, avctx);
avctx->coded_frame = &ctx->picture;
avcodec_get_frame_defaults(&ctx->picture);