From f9b5f2870cd7ebb8fe70eeb65e22d11bb88d5202 Mon Sep 17 00:00:00 2001 From: Uoti Urpala Date: Sat, 2 Apr 2011 07:02:43 +0300 Subject: mp3lib: drop internal mp3lib tree Delete mp3lib which has been the default mp3 decoder until now. In addition to being an unnecessary embedded library it now fails to compile correctly with the new gcc-4.6, producing noise. After the deletion the default decoder priority for mp3 will be first libmpg123 (a newer version of the code that mp3lib was based on) if available, then ffmp3float which should be available in all normal compiles. I think that some tweaking may be required as these decoder alternatives get wider testing, but any problems should be solvable and there should be no need for mp3lib. --- libmpcodecs/ad.c | 4 ---- 1 file changed, 4 deletions(-) (limited to 'libmpcodecs/ad.c') diff --git a/libmpcodecs/ad.c b/libmpcodecs/ad.c index 2e431e6c48..68d2c44708 100644 --- a/libmpcodecs/ad.c +++ b/libmpcodecs/ad.c @@ -32,7 +32,6 @@ /* Missed vorbis, mad, dshow */ extern const ad_functions_t mpcodecs_ad_mpg123; -extern const ad_functions_t mpcodecs_ad_mp3lib; extern const ad_functions_t mpcodecs_ad_ffmpeg; extern const ad_functions_t mpcodecs_ad_liba52; extern const ad_functions_t mpcodecs_ad_hwac3; @@ -63,9 +62,6 @@ const ad_functions_t * const mpcodecs_ad_drivers[] = #ifdef CONFIG_MPG123 &mpcodecs_ad_mpg123, #endif -#ifdef CONFIG_MP3LIB - &mpcodecs_ad_mp3lib, -#endif #ifdef CONFIG_LIBA52 &mpcodecs_ad_liba52, #endif -- cgit v1.2.3