remove unused exptab field of struct fft_complex.
[paraslash.git] / afh_common.c
index 80fcbe8b663b85f36f4699df197dc303664bc6b1..1005139d8365165903ac01b8dac011017346c5c9 100644 (file)
@@ -27,6 +27,7 @@ void mp3_init(struct audio_format_handler *);
        void aac_afh_init(struct audio_format_handler *);
 #endif
 
+void wma_afh_init(struct audio_format_handler *);
 /**
  * The list of supported audio formats.
  *
@@ -56,6 +57,10 @@ static struct audio_format_handler afl[] = {
                .init = aac_afh_init,
 #endif
        },
+       {
+               .name = "wma",
+               .init = wma_afh_init,
+       },
        {
                .name = NULL,
        }