From bff4c54ece5d6ebf84c1a19a05afbeba57bf65ae Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Wed, 26 Aug 2009 20:08:13 +0200 Subject: decoder/mpg123: new decoder plugin based on libmpg123 Still missing: - seeking - tags - streaming - encodings other than MPG123_ENC_SIGNED_16 --- src/decoder_list.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/decoder_list.c') diff --git a/src/decoder_list.c b/src/decoder_list.c index 177ac46e4..d30611e1b 100644 --- a/src/decoder_list.c +++ b/src/decoder_list.c @@ -28,6 +28,7 @@ #include extern const struct decoder_plugin mad_decoder_plugin; +extern const struct decoder_plugin mpg123_decoder_plugin; extern const struct decoder_plugin vorbis_decoder_plugin; extern const struct decoder_plugin flac_decoder_plugin; extern const struct decoder_plugin oggflac_decoder_plugin; @@ -48,6 +49,9 @@ static const struct decoder_plugin *const decoder_plugins[] = { #ifdef HAVE_MAD &mad_decoder_plugin, #endif +#ifdef HAVE_MPG123 + &mpg123_decoder_plugin, +#endif #ifdef ENABLE_VORBIS_DECODER &vorbis_decoder_plugin, #endif -- cgit v1.2.3