Workaround for lack of proper Unicode support in AAC decoder.
This commit is contained in:
parent
d6e5b9e069
commit
44c5c7e56c
@ -100,6 +100,6 @@ FunctionEnd
|
||||
|
||||
Function .onInstSuccess
|
||||
StrCpy $R0 "$INSTDIR"
|
||||
UAC_AsUser_ExecShell "explore" "$R0" "" "" SW_SHOWNORMAL
|
||||
UAC_AsUser_ExecShell "open" "$R0\LameXP.exe" "" "$OUTDIR" SW_SHOWNORMAL
|
||||
!insertmacro UAC_AsUser_ExecShell "explore" "$R0" "" "" SW_SHOWNORMAL
|
||||
!insertmacro UAC_AsUser_ExecShell "open" "$R0\LameXP.exe" "" "$OUTDIR" SW_SHOWNORMAL
|
||||
FunctionEnd
|
||||
|
@ -25,7 +25,7 @@
|
||||
#define VER_LAMEXP_MAJOR 4
|
||||
#define VER_LAMEXP_MINOR_HI 0
|
||||
#define VER_LAMEXP_MINOR_LO 0
|
||||
#define VER_LAMEXP_BUILD 113
|
||||
#define VER_LAMEXP_BUILD 114
|
||||
#define VER_LAMEXP_SUFFIX TechPreview
|
||||
|
||||
/*
|
||||
|
@ -46,8 +46,8 @@ bool AACDecoder::decode(const QString &sourceFile, const QString &outputFile, vo
|
||||
QProcess process;
|
||||
QStringList args;
|
||||
|
||||
args << "-o" << QDir::toNativeSeparators(outputFile);
|
||||
args << QDir::toNativeSeparators(sourceFile);
|
||||
args << "-o" << pathToShort(QDir::toNativeSeparators(outputFile));
|
||||
args << pathToShort(QDir::toNativeSeparators(sourceFile));
|
||||
|
||||
if(!startProcess(process, m_binary, args))
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user