X-Git-Url: http://git.tuebingen.mpg.de/?a=blobdiff_plain;f=afh_common.c;h=4464987a61fc5172e2601cded9aac0998c9cfda2;hb=90560de0d7e4d825772270f9ac7cbefbb38aad97;hp=498f492142d9fe14ff562dc33c8c7e2acb4cc2db;hpb=063328d833daa7e06589645e05d4d2e02f55e911;p=paraslash.git diff --git a/afh_common.c b/afh_common.c index 498f4921..4464987a 100644 --- a/afh_common.c +++ b/afh_common.c @@ -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, }