From 29b756c97026ed057149048c82f5fe43d7ffae5d Mon Sep 17 00:00:00 2001 From: LoRd_MuldeR Date: Thu, 4 Feb 2016 00:05:22 +0100 Subject: [PATCH] FhgAacEnc: Don't use "--dll" option, as latest fghaacenc.exe doesn't seem to support it anymore (exists silently with error code 0x6). --- src/Config.h | 2 +- src/Encoder_AAC_FHG.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Config.h b/src/Config.h index f2a9bc1c..e53b8069 100644 --- a/src/Config.h +++ b/src/Config.h @@ -35,7 +35,7 @@ #define VER_LAMEXP_MINOR_LO 4 #define VER_LAMEXP_TYPE Alpha #define VER_LAMEXP_PATCH 3 -#define VER_LAMEXP_BUILD 1864 +#define VER_LAMEXP_BUILD 1865 #define VER_LAMEXP_CONFG 1818 /////////////////////////////////////////////////////////////////////////////// diff --git a/src/Encoder_AAC_FHG.cpp b/src/Encoder_AAC_FHG.cpp index f91a6e81..3c942528 100644 --- a/src/Encoder_AAC_FHG.cpp +++ b/src/Encoder_AAC_FHG.cpp @@ -184,7 +184,7 @@ bool FHGAACEncoder::encode(const QString &sourceFile, const AudioFileModel_MetaI break; } - args << "--dll" << m_binary_dll; + //args << "--dll" << m_binary_dll; if(!m_configCustomParams.isEmpty()) args << m_configCustomParams.split(" ", QString::SkipEmptyParts);