X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=afh_common.c;h=1005139d8365165903ac01b8dac011017346c5c9;hp=80fcbe8b663b85f36f4699df197dc303664bc6b1;hb=f787cf0eb470b68139ecde9c64210dfa59b8c4dd;hpb=5967b31f0e4163a9be4ed5aeb01bd2c6377ffac8 diff --git a/afh_common.c b/afh_common.c index 80fcbe8b..1005139d 100644 --- a/afh_common.c +++ b/afh_common.c @@ -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, }