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
|
Function .onInstSuccess
|
||||||
StrCpy $R0 "$INSTDIR"
|
StrCpy $R0 "$INSTDIR"
|
||||||
UAC_AsUser_ExecShell "explore" "$R0" "" "" SW_SHOWNORMAL
|
!insertmacro UAC_AsUser_ExecShell "explore" "$R0" "" "" SW_SHOWNORMAL
|
||||||
UAC_AsUser_ExecShell "open" "$R0\LameXP.exe" "" "$OUTDIR" SW_SHOWNORMAL
|
!insertmacro UAC_AsUser_ExecShell "open" "$R0\LameXP.exe" "" "$OUTDIR" SW_SHOWNORMAL
|
||||||
FunctionEnd
|
FunctionEnd
|
||||||
|
@ -25,7 +25,7 @@
|
|||||||
#define VER_LAMEXP_MAJOR 4
|
#define VER_LAMEXP_MAJOR 4
|
||||||
#define VER_LAMEXP_MINOR_HI 0
|
#define VER_LAMEXP_MINOR_HI 0
|
||||||
#define VER_LAMEXP_MINOR_LO 0
|
#define VER_LAMEXP_MINOR_LO 0
|
||||||
#define VER_LAMEXP_BUILD 113
|
#define VER_LAMEXP_BUILD 114
|
||||||
#define VER_LAMEXP_SUFFIX TechPreview
|
#define VER_LAMEXP_SUFFIX TechPreview
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -46,8 +46,8 @@ bool AACDecoder::decode(const QString &sourceFile, const QString &outputFile, vo
|
|||||||
QProcess process;
|
QProcess process;
|
||||||
QStringList args;
|
QStringList args;
|
||||||
|
|
||||||
args << "-o" << QDir::toNativeSeparators(outputFile);
|
args << "-o" << pathToShort(QDir::toNativeSeparators(outputFile));
|
||||||
args << QDir::toNativeSeparators(sourceFile);
|
args << pathToShort(QDir::toNativeSeparators(sourceFile));
|
||||||
|
|
||||||
if(!startProcess(process, m_binary, args))
|
if(!startProcess(process, m_binary, args))
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user