From d5318e5e095f3ef831b5251b554ce790da3c40c7 Mon Sep 17 00:00:00 2001 From: wm4 Date: Tue, 24 Mar 2015 15:47:38 +0100 Subject: audio: remove internal libmpg123 wrapper We've been prefering the libavcodec mp3 decoder for half a year now. There is likely no benefit at all for using the libmpg123 one. It's just a maintenance burden, and tricks users into thinking it's a required dependency. --- audio/decode/dec_audio.c | 5 ----- 1 file changed, 5 deletions(-) (limited to 'audio/decode/dec_audio.c') diff --git a/audio/decode/dec_audio.c b/audio/decode/dec_audio.c index c5ad97f7af..2c4834656a 100644 --- a/audio/decode/dec_audio.c +++ b/audio/decode/dec_audio.c @@ -25,7 +25,6 @@ #include "demux/codec_tags.h" -#include "config.h" #include "common/codecs.h" #include "common/msg.h" #include "misc/bstr.h" @@ -43,15 +42,11 @@ #include "audio/filter/af.h" -extern const struct ad_functions ad_mpg123; extern const struct ad_functions ad_lavc; extern const struct ad_functions ad_spdif; static const struct ad_functions * const ad_drivers[] = { &ad_lavc, -#if HAVE_MPG123 - &ad_mpg123, -#endif &ad_spdif, NULL }; -- cgit v1.2.3