X-Git-Url: http://git.tuebingen.mpg.de/?a=blobdiff_plain;f=afh_common.c;h=1228c0d80e5e8c276072bf38a29b0d1f635f2b74;hb=ef1f130a1f9ac61a51da10ee56c5bd9ef1b52366;hp=44a6fd62cbe50c758aba17b33dd45c0e7eb831c6;hpb=82d08fb6da4dfc7d93d1ee0cce4706721378fe12;p=paraslash.git diff --git a/afh_common.c b/afh_common.c index 44a6fd62..1228c0d8 100644 --- a/afh_common.c +++ b/afh_common.c @@ -28,6 +28,9 @@ void mp3_init(struct audio_format_handler *); #ifdef HAVE_SPEEX void spx_afh_init(struct audio_format_handler *); #endif +#ifdef HAVE_FLAC + void flac_afh_init(struct audio_format_handler *); +#endif void wma_afh_init(struct audio_format_handler *); /** @@ -67,6 +70,12 @@ static struct audio_format_handler afl[] = { .name = "spx", #ifdef HAVE_SPEEX .init = spx_afh_init, +#endif + }, + { + .name = "flac", +#ifdef HAVE_FLAC + .init = flac_afh_init, #endif }, {