From da0ac0ee641904622c42ffbd18d4b7bb1522b1a0 Mon Sep 17 00:00:00 2001 From: Måns Rullgård Date: Sat, 6 Mar 2010 22:36:41 +0000 Subject: Make some functions static These functions are not used outside their respective files, and they lack a prototype in a header. Originally committed as revision 22259 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/rdft.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavcodec/rdft.c') diff --git a/libavcodec/rdft.c b/libavcodec/rdft.c index 8638a55ca1..d5293e5e69 100644 --- a/libavcodec/rdft.c +++ b/libavcodec/rdft.c @@ -80,7 +80,7 @@ av_cold int ff_rdft_init(RDFTContext *s, int nbits, enum RDFTransformType trans) * 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; -- cgit v1.2.3