diff fdctref.c @ 9293:dc9005dec909 libavcodec

Give better names to reference DCT functions. patch by Dylan Yudaken, dyudaken gmail com
author diego
date Tue, 31 Mar 2009 08:55:22 +0000
parents e9d9d946f213
children
line wrap: on
line diff
--- a/fdctref.c	Tue Mar 31 08:33:02 2009 +0000
+++ b/fdctref.c	Tue Mar 31 08:55:22 2009 +0000
@@ -40,13 +40,13 @@
 #endif
 
 /* global declarations */
-void init_fdct (void);
-void fdct (short *block);
+void ff_ref_dct_init (void);
+void ff_ref_fdct (short *block);
 
 /* private data */
 static double c[8][8]; /* transform coefficients */
 
-void init_fdct(void)
+void ff_ref_dct_init(void)
 {
   int i, j;
   double s;
@@ -60,7 +60,7 @@
   }
 }
 
-void fdct(block)
+void ff_ref_fdct(block)
 short *block;
 {
         register int i, j;
@@ -122,7 +122,7 @@
 
 /* perform IDCT matrix multiply for 8x8 coefficient block */
 
-void idct(block)
+void ff_ref_idct(block)
 short *block;
 {
   int i, j, k, v;