From: Ronald S. Bultje Date: Fri, 14 Oct 2011 16:28:46 +0000 (-0700) Subject: proresdsp: fix function prototypes. X-Git-Tag: android-x86-4.4-r1~8529^2~5110 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=05c8f119cc6b5727319c56b055af82ac1ded93b5;p=android-x86%2Fexternal-ffmpeg.git proresdsp: fix function prototypes. Signed-off-by: Janne Grunau --- 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) {