X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=afh_common.c;h=5be43550c202b516aaedf332dbbfba341da20dcb;hp=6c161a7c7ea2a30c0abb6a87c91ef5075d5dbf06;hb=8bcf75a3921d15e03c4351b3efa609eac67c3817;hpb=53133e1c6dbefade4cee94cf4c4363f9ba38b2d5 diff --git a/afh_common.c b/afh_common.c index 6c161a7c..5be43550 100644 --- a/afh_common.c +++ b/afh_common.c @@ -31,6 +31,10 @@ void mp3_init(struct audio_format_handler *); void flac_afh_init(struct audio_format_handler *); #endif +#ifdef HAVE_OPUS + void opus_afh_init(struct audio_format_handler *); +#endif + void wma_afh_init(struct audio_format_handler *); /** The list of all status items */ @@ -79,6 +83,12 @@ static struct audio_format_handler afl[] = { .name = "flac", #ifdef HAVE_FLAC .init = flac_afh_init, +#endif + }, + { + .name = "opus", +#ifdef HAVE_OPUS + .init = opus_afh_init, #endif }, {