diff options
author | Måns Rullgård <mans@mansr.com> | 2010-03-07 21:47:44 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2010-03-07 21:47:44 +0000 |
commit | 41ea18fb0db3c22943458e23d604158f2c95d4ca (patch) | |
tree | 91152cc29a4c953d1b483018956f9dcbd761eb8e /libavcodec/fft.h | |
parent | 3bd8a2ef6c39caba25627ec6a608a15d07f3f8bb (diff) | |
download | ffmpeg-41ea18fb0db3c22943458e23d604158f2c95d4ca.tar.gz |
Give RDFT types more meaningful names
Originally committed as revision 22290 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/fft.h')
-rw-r--r-- | libavcodec/fft.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libavcodec/fft.h b/libavcodec/fft.h index f3e7d7aa4e..9c2345a0bd 100644 --- a/libavcodec/fft.h +++ b/libavcodec/fft.h @@ -195,10 +195,10 @@ void ff_mdct_end(FFTContext *s); /* Real Discrete Fourier Transform */ enum RDFTransformType { - RDFT, - IRDFT, - RIDFT, - IRIDFT, + DFT_R2C, + IDFT_C2R, + IDFT_R2C, + DFT_C2R, }; typedef struct { |