comparison dct-test.c @ 8250:cf4d575b1982 libavcodec

Delete unnecessary 'extern' keywords.
author diego
date Wed, 03 Dec 2008 15:23:30 +0000
parents d2a146706bc5
children 583f32e6f4b5
comparison
equal deleted inserted replaced
8249:5057047bcc52 8250:cf4d575b1982
44 #undef random 44 #undef random
45 45
46 void *fast_memcpy(void *a, const void *b, size_t c){return memcpy(a,b,c);}; 46 void *fast_memcpy(void *a, const void *b, size_t c){return memcpy(a,b,c);};
47 47
48 /* reference fdct/idct */ 48 /* reference fdct/idct */
49 extern void fdct(DCTELEM *block); 49 void fdct(DCTELEM *block);
50 extern void idct(DCTELEM *block); 50 void idct(DCTELEM *block);
51 extern void init_fdct(); 51 void init_fdct();
52 52
53 extern void ff_mmx_idct(DCTELEM *data); 53 void ff_mmx_idct(DCTELEM *data);
54 extern void ff_mmxext_idct(DCTELEM *data); 54 void ff_mmxext_idct(DCTELEM *data);
55 55
56 extern void odivx_idct_c (short *block); 56 void odivx_idct_c(short *block);
57 57
58 // BFIN 58 // BFIN
59 extern void ff_bfin_idct (DCTELEM *block) ; 59 void ff_bfin_idct(DCTELEM *block);
60 extern void ff_bfin_fdct (DCTELEM *block) ; 60 void ff_bfin_fdct(DCTELEM *block);
61 61
62 // ALTIVEC 62 // ALTIVEC
63 extern void fdct_altivec (DCTELEM *block); 63 void fdct_altivec(DCTELEM *block);
64 //extern void idct_altivec (DCTELEM *block);?? no routine 64 //void idct_altivec(DCTELEM *block);?? no routine
65 65
66 66
67 struct algo { 67 struct algo {
68 const char *name; 68 const char *name;
69 enum { FDCT, IDCT } is_idct; 69 enum { FDCT, IDCT } is_idct;