summaryrefslogtreecommitdiff
path: root/libavcodec/dct-test.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2012-04-02 21:26:08 +0200
committerMichael Niedermayer <michaelni@gmx.at>2012-04-02 21:26:08 +0200
commite0541c7b5ef787aad4bada0a56bae4b136899baf (patch)
tree6c33d81e913d2e508367fde0360ac237a2cb6fa0 /libavcodec/dct-test.c
parent183c3fa48acaf4561d5269ab9a766d13ae70140c (diff)
dct-test: fix incompatible pointer types warning
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/dct-test.c')
-rw-r--r--libavcodec/dct-test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/dct-test.c b/libavcodec/dct-test.c
index 16b32ca473..9e023ab4fc 100644
--- a/libavcodec/dct-test.c
+++ b/libavcodec/dct-test.c
@@ -103,7 +103,7 @@ static const struct algo fdct_tab[] = {
void ff_prores_idct_put_10_sse2(uint16_t *dst, int linesize,
DCTELEM *block, int16_t *qmat);
-static void ff_prores_idct_put_10_sse2_wrap(uint16_t *dst){
+static void ff_prores_idct_put_10_sse2_wrap(DCTELEM *dst){
int16_t qmat[64]; int i;
int16_t tmp[64];