diff options
author | Måns Rullgård <mans@mansr.com> | 2010-03-06 22:36:41 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2010-03-06 22:36:41 +0000 |
commit | da0ac0ee641904622c42ffbd18d4b7bb1522b1a0 (patch) | |
tree | 89668bff6bf8dace48be6661f1e0594c4bcbf779 /libavcodec/rdft.c | |
parent | c26e58e32cf430f060209e0d6088181f4426b3ce (diff) | |
download | ffmpeg-da0ac0ee641904622c42ffbd18d4b7bb1522b1a0.tar.gz |
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
Diffstat (limited to 'libavcodec/rdft.c')
-rw-r--r-- | libavcodec/rdft.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |