diff rdft.c @ 11374:1cd8731bbe7f libavcodec

Make some functions static These functions are not used outside their respective files, and they lack a prototype in a header.
author mru
date Sat, 06 Mar 2010 22:36:41 +0000
parents 4b3da727d832
children 4c7afa50df6f
line wrap: on
line diff
--- a/rdft.c	Sat Mar 06 22:36:36 2010 +0000
+++ b/rdft.c	Sat Mar 06 22:36:41 2010 +0000
@@ -80,7 +80,7 @@
  * the two real FFTs into one complex FFT. Unmangle the results.
  * ref: http://www.engineeringproductivitytools.com/stuff/T0001/PT10.HTM
  */
-void ff_rdft_calc_c(RDFTContext* s, FFTSample* data)
+static void ff_rdft_calc_c(RDFTContext* s, FFTSample* data)
 {
     int i, i1, i2;
     FFTComplex ev, od;