proresdsp: fix function prototypes.
authorRonald S. Bultje <rsbultje@gmail.com>
Fri, 14 Oct 2011 16:28:46 +0000 (09:28 -0700)
committerJanne Grunau <janne-libav@jannau.net>
Fri, 14 Oct 2011 19:34:46 +0000 (21:34 +0200)
Signed-off-by: Janne Grunau <janne-libav@jannau.net>
libavcodec/x86/proresdsp-init.c

index 9760105..46ba43b 100644 (file)
 #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)
 {