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/proresdsp.h | |
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/proresdsp.h')
-rw-r--r-- | libavcodec/proresdsp.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/proresdsp.h b/libavcodec/proresdsp.h index 8b864faabd..7e81b0870c 100644 --- a/libavcodec/proresdsp.h +++ b/libavcodec/proresdsp.h @@ -33,8 +33,8 @@ typedef struct { void (* idct_put) (uint16_t *out, int linesize, DCTELEM *block, const int16_t *qmat); } ProresDSPContext; -void ff_proresdsp_init(ProresDSPContext *dsp); +void ff_proresdsp_init(ProresDSPContext *dsp, AVCodecContext *avctx); -void ff_proresdsp_x86_init(ProresDSPContext *dsp); +void ff_proresdsp_x86_init(ProresDSPContext *dsp, AVCodecContext *avctx); #endif /* AVCODEC_PRORESDSP_H */ |