Workaround for lack of proper Unicode support in AAC decoder.

This commit is contained in:
LoRd_MuldeR 2010-12-02 23:59:43 +01:00
parent d6e5b9e069
commit 44c5c7e56c
3 changed files with 5 additions and 5 deletions

View File

@ -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

View File

@ -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
/*

View File

@ -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))
{