X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=afh_common.c;h=1005139d8365165903ac01b8dac011017346c5c9;hp=80fcbe8b663b85f36f4699df197dc303664bc6b1;hb=44aa9a29ecc951d74a28bd79462cb0f9b628523e;hpb=b3d637602e6a730a7bc91384c4ef970eeeb3d44c;ds=sidebyside 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, }