summaryrefslogtreecommitdiffstats
path: root/libavcodec/fdctref.c
diff options
context:
space:
mode:
authorDylan Yudaken <dyudaken@gmail.com>2009-03-31 08:55:22 +0000
committerDiego Biurrun <diego@biurrun.de>2009-03-31 08:55:22 +0000
commit0de74546d7839b305b5c60653eabf65c9418c7b3 (patch)
tree566aff0fc2545a81ec77c6fb88702040746ab69b /libavcodec/fdctref.c
parenta3d636aff9d18e66fa3e260f515f6e9dba25bf2f (diff)
downloadffmpeg-streaming-0de74546d7839b305b5c60653eabf65c9418c7b3.zip
ffmpeg-streaming-0de74546d7839b305b5c60653eabf65c9418c7b3.tar.gz
Give better names to reference DCT functions.
patch by Dylan Yudaken, dyudaken gmail com Originally committed as revision 18257 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/fdctref.c')
-rw-r--r--libavcodec/fdctref.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/libavcodec/fdctref.c b/libavcodec/fdctref.c
index 164883d..c951368 100644
--- a/libavcodec/fdctref.c
+++ b/libavcodec/fdctref.c
@@ -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 init_fdct(void)
}
}
-void fdct(block)
+void ff_ref_fdct(block)
short *block;
{
register int i, j;
@@ -122,7 +122,7 @@ short *block;
/* perform IDCT matrix multiply for 8x8 coefficient block */
-void idct(block)
+void ff_ref_idct(block)
short *block;
{
int i, j, k, v;
OpenPOWER on IntegriCloud