summaryrefslogtreecommitdiff
path: root/libavcodec/fft.h
diff options
context:
space:
mode:
authorNathan Caldwell <saintdev@gmail.com>2010-08-23 19:27:24 +0000
committerAlex Converse <alex.converse@gmail.com>2010-08-23 19:27:24 +0000
commitaf00dddeca58df2993effb162bd5fd9a715d57d3 (patch)
tree51da27a1b37f5e1388a369f0b450bace69a0980f /libavcodec/fft.h
parent078ae66b4b982ae249b4000aaaff90b7facbdbce (diff)
aacenc: Rename Psy3gpp* structs to AacPsy*
This allows cleaner implementation of other psymodels using the existing structs. It also will make it easier to interchange individual parts of the psymodel to create hybrid models. Patch by: Nathan Caldwell <saintdev@gmail.com> Originally committed as revision 24890 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/fft.h')
-rw-r--r--libavcodec/fft.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/fft.h b/libavcodec/fft.h
index eb6714fe95..030222664c 100644
--- a/libavcodec/fft.h
+++ b/libavcodec/fft.h
@@ -35,7 +35,7 @@ struct FFTContext {
uint16_t *revtab;
FFTComplex *tmp_buf;
int mdct_size; /* size of MDCT (i.e. number of input data * 2) */
- int mdct_bits; /* n = 2^nbits */
+ int mdct_bits; /* n = 2^mdct_bits */
/* pre/post rotation tables */
FFTSample *tcos;
FFTSample *tsin;