# HG changeset patch # User michaelni # Date 1056846210 0 # Node ID a1cc1810d58fc894b3a1dd15a05a8229ba7084d5 # Parent 018ebc066952f62b801f4e78467af472e18898fd build error on Alpha patch by (Sam Hocevar ) diff -r 018ebc066952 -r a1cc1810d58f alpha/dsputil_alpha.c --- a/alpha/dsputil_alpha.c Sat Jun 28 22:51:42 2003 +0000 +++ b/alpha/dsputil_alpha.c Sun Jun 29 00:23:30 2003 +0000 @@ -20,6 +20,7 @@ #include "asm.h" #include "../dsputil.h" +extern void simple_idct_axp(DCTELEM *block); extern void simple_idct_put_axp(uint8_t *dest, int line_size, DCTELEM *block); extern void simple_idct_add_axp(uint8_t *dest, int line_size, DCTELEM *block); @@ -363,5 +364,5 @@ c->idct_put = simple_idct_put_axp; c->idct_add = simple_idct_add_axp; - c->idct_idct = simple_idct_axp; + c->idct = simple_idct_axp; }