diff options
author | Måns Rullgård | 2010-03-07 21:47:44 +0000 |
---|---|---|
committer | Måns Rullgård | 2010-03-07 21:47:44 +0000 |
commit | 41ea18fb0db3c22943458e23d604158f2c95d4ca (patch) | |
tree | 91152cc29a4c953d1b483018956f9dcbd761eb8e /libavcodec/fft-test.c | |
parent | 3bd8a2ef6c39caba25627ec6a608a15d07f3f8bb (diff) |
Give RDFT types more meaningful names
Originally committed as revision 22290 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/fft-test.c')
-rw-r--r-- | libavcodec/fft-test.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/fft-test.c b/libavcodec/fft-test.c index e51736727f..db55b6033d 100644 --- a/libavcodec/fft-test.c +++ b/libavcodec/fft-test.c @@ -292,10 +292,10 @@ int main(int argc, char **argv) break; case TRANSFORM_RDFT: if (do_inverse) - av_log(NULL, AV_LOG_INFO,"IRDFT"); + av_log(NULL, AV_LOG_INFO,"IDFT_C2R"); else - av_log(NULL, AV_LOG_INFO,"RDFT"); - ff_rdft_init(r, fft_nbits, do_inverse ? IRDFT : RDFT); + av_log(NULL, AV_LOG_INFO,"DFT_R2C"); + ff_rdft_init(r, fft_nbits, do_inverse ? IDFT_C2R : DFT_R2C); fft_ref_init(fft_nbits, do_inverse); break; case TRANSFORM_DCT: |