Make credits consistent for different resamplers.

This commit is contained in:
v.audacity 2013-01-14 05:00:00 +00:00
parent 6af29d0dd6
commit 0056b56c24

View File

@ -111,13 +111,20 @@ void AboutDialog::CreateCreditsList()
AddCredit(wxT("iAVC"), roleLibrary);
AddCredit(wxT("LAME"), roleLibrary);
AddCredit(wxT("libmad"), roleLibrary);
#if USE_LIBRESAMPLE
AddCredit(wxT("libresample"), roleLibrary);
#endif
#if USE_LIBSAMPLERATE
AddCredit(wxT("libsamplerate"), roleLibrary);
#endif
#if USE_LIBSOXR
AddCredit(wxT("libsoxr"), roleLibrary);
#endif
AddCredit(wxT("libsndfile"), roleLibrary);
AddCredit(wxT("libsoxr"), roleLibrary);
AddCredit(wxT("Nyquist"), roleLibrary);
AddCredit(wxT("Ogg Vorbis"), roleLibrary);
AddCredit(wxT("PortAudio"), roleLibrary);
AddCredit(wxT("portsmf"), roleLibrary);
AddCredit(wxT("Resample"), roleLibrary);
AddCredit(wxT("sbsms"), roleLibrary);
AddCredit(wxT("SoundTouch"), roleLibrary);
AddCredit(wxT("TwoLAME"), roleLibrary);