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/binkaudio.c | |
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/binkaudio.c')
-rw-r--r-- | libavcodec/binkaudio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/binkaudio.c b/libavcodec/binkaudio.c index 7462ab727e..b9d3df89c8 100644 --- a/libavcodec/binkaudio.c +++ b/libavcodec/binkaudio.c @@ -125,7 +125,7 @@ static av_cold int decode_init(AVCodecContext *avctx) s->coeffs_ptr[i] = s->coeffs + i * s->frame_len; if (CONFIG_BINKAUDIO_RDFT_DECODER && avctx->codec->id == CODEC_ID_BINKAUDIO_RDFT) - ff_rdft_init(&s->trans.rdft, frame_len_bits, IRIDFT); + ff_rdft_init(&s->trans.rdft, frame_len_bits, DFT_C2R); else if (CONFIG_BINKAUDIO_DCT_DECODER) ff_dct_init(&s->trans.dct, frame_len_bits, 1); else |