]> git.tuebingen.mpg.de Git - paraslash.git/blobdiff - afh_common.c
NEWS update.
[paraslash.git] / afh_common.c
index 498f492142d9fe14ff562dc33c8c7e2acb4cc2db..4464987a61fc5172e2601cded9aac0998c9cfda2 100644 (file)
@@ -26,6 +26,9 @@ void mp3_init(struct audio_format_handler *);
 #ifdef HAVE_FAAD
        void aac_afh_init(struct audio_format_handler *);
 #endif
+#ifdef HAVE_SPEEX
+       void spx_afh_init(struct audio_format_handler *);
+#endif
 
 void wma_afh_init(struct audio_format_handler *);
 /**
@@ -61,6 +64,12 @@ static struct audio_format_handler afl[] = {
                .name = "wma",
                .init = wma_afh_init,
        },
+       {
+               .name = "spx",
+#ifdef HAVE_SPEEX
+               .init = spx_afh_init,
+#endif
+       },
        {
                .name = NULL,
        }