2017-02-07 Fred Gleason <fredg@paravelsystems.com>

* Changed the DLL load target for libmad from 'libmad.so' to
	'libmad.so.0' in 'cae/cae.cpp' and 'lib/rdaudioconvert.cpp'.
	* Changed the DLL load target for lame from 'libmp3lame.so' to
	'libmp3lame.so.0' in 'cae/cae.cpp' and 'lib/rdaudioconvert.cpp'.
	* Changed the DLL load target for faad from 'libfaad.so' to
	'libfaad.so.2' in 'cae/cae.cpp' and 'lib/rdmp4.cpp'.
	* Changed the DLL load target for mp4v2 from 'libmp4v2.so' to
	'libmp4v2.so.2' in 'cae/cae.cpp' and 'lib/rdaudioconvert.cpp'.
This commit is contained in:
Fred Gleason
2017-02-07 08:45:05 -05:00
parent 82ec0c73b5
commit af592fa200
4 changed files with 19 additions and 10 deletions

View File

@@ -74,9 +74,9 @@ RDAudioConvert::RDAudioConvert(const QString &station_name,QObject *parent)
//
// Load MPEG Libraries
//
conv_mad_handle=dlopen("libmad.so",RTLD_LAZY);
conv_lame_handle=dlopen("libmp3lame.so",RTLD_LAZY);
conv_twolame_handle=dlopen("libtwolame.so",RTLD_LAZY);
conv_mad_handle=dlopen("libmad.so.0",RTLD_LAZY);
conv_lame_handle=dlopen("libmp3lame.so.0",RTLD_LAZY);
conv_twolame_handle=dlopen("libtwolame.so.0",RTLD_LAZY);
}