diff options
author | Ronald S. Bultje <rsbultje@gmail.com> | 2011-10-14 09:28:46 -0700 |
---|---|---|
committer | Janne Grunau <janne-libav@jannau.net> | 2011-10-14 21:34:46 +0200 |
commit | 05c8f119cc6b5727319c56b055af82ac1ded93b5 (patch) | |
tree | 9d3b0a33890c90c5b4ac2114a717db8b4e1f4441 | |
parent | f78cd0c243b9149c7f604ecf1006d78e344aa6ca (diff) | |
download | ffmpeg-05c8f119cc6b5727319c56b055af82ac1ded93b5.tar.gz |
proresdsp: fix function prototypes.
Signed-off-by: Janne Grunau <janne-libav@jannau.net>
-rw-r--r-- | libavcodec/x86/proresdsp-init.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/x86/proresdsp-init.c b/libavcodec/x86/proresdsp-init.c index 9760105ab6..46ba43bc01 100644 --- a/libavcodec/x86/proresdsp-init.c +++ b/libavcodec/x86/proresdsp-init.c @@ -23,11 +23,11 @@ #include "libavcodec/proresdsp.h" void ff_prores_idct_put_10_sse2(uint16_t *dst, int linesize, - DCTELEM *block); + DCTELEM *block, const int16_t *qmat); void ff_prores_idct_put_10_sse4(uint16_t *dst, int linesize, - DCTELEM *block); + DCTELEM *block, const int16_t *qmat); void ff_prores_idct_put_10_avx (uint16_t *dst, int linesize, - DCTELEM *block); + DCTELEM *block, const int16_t *qmat); void ff_proresdsp_x86_init(ProresDSPContext *dsp) { |