diff binkaudio.c @ 11391:4c7afa50df6f libavcodec

Give RDFT types more meaningful names
author mru
date Sun, 07 Mar 2010 21:47:44 +0000
parents 4b3da727d832
children 908cc63498ec
line wrap: on
line diff
--- a/binkaudio.c	Sun Mar 07 21:47:41 2010 +0000
+++ b/binkaudio.c	Sun Mar 07 21:47:44 2010 +0000
@@ -125,7 +125,7 @@
         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