1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-10-21 14:02:57 +02:00

Rename 64 bit ffmpeg libs.

Also change the prompting to suggest the new/expected name.
This commit is contained in:
James Crook
2019-02-13 08:46:03 +00:00
parent c912b13747
commit 1d40f33eba
2 changed files with 9 additions and 2 deletions

View File

@@ -591,16 +591,17 @@ bool FFmpegLibs::FindLibs(wxWindow *parent)
wxString path;
wxString name;
// If we're looking for the lib, use the standard name, as the
// configured name is not found.
name = GetLibAVFormatName();
wxLogMessage(wxT("Looking for FFmpeg libraries..."));
if (!mLibAVFormatPath.IsEmpty()) {
wxLogMessage(wxT("mLibAVFormatPath ('%s') is not empty."), mLibAVFormatPath);
const wxFileName fn{ mLibAVFormatPath };
path = fn.GetPath();
name = fn.GetFullName();
}
else {
path = GetLibAVFormatPath();
name = GetLibAVFormatName();
wxLogMessage(wxT("mLibAVFormatPath is empty, starting with path '%s', name '%s'."),
path, name);
}