diff binkaudio.c @ 11582:23cad4157bfb libavcodec

Make code using 1d-DCT consistent with the API change
author vitor
date Sat, 03 Apr 2010 15:04:15 +0000
parents 8a4984c5cacc
children 7dd2a45249a9
line wrap: on
line diff
--- a/binkaudio.c	Sat Apr 03 14:15:00 2010 +0000
+++ b/binkaudio.c	Sat Apr 03 15:04:15 2010 +0000
@@ -127,7 +127,7 @@
     if (CONFIG_BINKAUDIO_RDFT_DECODER && avctx->codec->id == CODEC_ID_BINKAUDIO_RDFT)
         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);
+        ff_dct_init(&s->trans.dct, frame_len_bits, DCT_III);
     else
         return -1;