Browse code

build error on Alpha patch by (Sam Hocevar <sam at zoy dot org>)

Originally committed as revision 1996 to svn://svn.ffmpeg.org/ffmpeg/trunk

Sam Hocevar authored on 2003/06/29 09:23:30
Showing 1 changed files
... ...
@@ -20,6 +20,7 @@
20 20
 #include "asm.h"
21 21
 #include "../dsputil.h"
22 22
 
23
+extern void simple_idct_axp(DCTELEM *block);
23 24
 extern void simple_idct_put_axp(uint8_t *dest, int line_size, DCTELEM *block);
24 25
 extern void simple_idct_add_axp(uint8_t *dest, int line_size, DCTELEM *block);
25 26
 
... ...
@@ -363,5 +364,5 @@ void dsputil_init_alpha(DSPContext* c, AVCodecContext *avctx)
363 363
     
364 364
     c->idct_put = simple_idct_put_axp;
365 365
     c->idct_add = simple_idct_add_axp;
366
-    c->idct_idct = simple_idct_axp;
366
+    c->idct = simple_idct_axp;
367 367
 }