diff options
author | Dylan Yudaken <dyudaken@gmail.com> | 2009-03-31 08:55:22 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2009-03-31 08:55:22 +0000 |
commit | 0de74546d7839b305b5c60653eabf65c9418c7b3 (patch) | |
tree | 566aff0fc2545a81ec77c6fb88702040746ab69b /libavcodec/fdctref.c | |
parent | a3d636aff9d18e66fa3e260f515f6e9dba25bf2f (diff) | |
download | ffmpeg-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.c | 10 |
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; |