diff --git a/src/Config.h b/src/Config.h index 9b77d1de..ebf32826 100644 --- a/src/Config.h +++ b/src/Config.h @@ -25,8 +25,8 @@ #define VER_LAMEXP_MAJOR 4 #define VER_LAMEXP_MINOR_HI 0 #define VER_LAMEXP_MINOR_LO 1 -#define VER_LAMEXP_BUILD 342 -#define VER_LAMEXP_SUFFIX Beta-3 +#define VER_LAMEXP_BUILD 344 +#define VER_LAMEXP_SUFFIX Beta-4 /* * Tools versions diff --git a/src/Decoder_AAC.cpp b/src/Decoder_AAC.cpp index 5b4febb4..f8fd3ad1 100644 --- a/src/Decoder_AAC.cpp +++ b/src/Decoder_AAC.cpp @@ -73,6 +73,7 @@ bool AACDecoder::decode(const QString &sourceFile, const QString &outputFile, vo { process.kill(); qWarning("FAAD process timed out <-- killing!"); + emit messageLogged("\nPROCESS TIMEOUT !!!"); bTimeout = true; break; } diff --git a/src/Decoder_AC3.cpp b/src/Decoder_AC3.cpp index 0753d9e9..87c469f1 100644 --- a/src/Decoder_AC3.cpp +++ b/src/Decoder_AC3.cpp @@ -73,6 +73,7 @@ bool AC3Decoder::decode(const QString &sourceFile, const QString &outputFile, vo { process.kill(); qWarning("Valdec process timed out <-- killing!"); + emit messageLogged("\nPROCESS TIMEOUT !!!"); bTimeout = true; break; } diff --git a/src/Decoder_ADPCM.cpp b/src/Decoder_ADPCM.cpp index 9a515aa2..9c9547d9 100644 --- a/src/Decoder_ADPCM.cpp +++ b/src/Decoder_ADPCM.cpp @@ -77,6 +77,7 @@ bool ADPCMDecoder::decode(const QString &sourceFile, const QString &outputFile, { process.kill(); qWarning("Sox process timed out <-- killing!"); + emit messageLogged("\nPROCESS TIMEOUT !!!"); bTimeout = true; break; } diff --git a/src/Decoder_ALAC.cpp b/src/Decoder_ALAC.cpp index 17349624..f26d125f 100644 --- a/src/Decoder_ALAC.cpp +++ b/src/Decoder_ALAC.cpp @@ -75,6 +75,7 @@ bool ALACDecoder::decode(const QString &sourceFile, const QString &outputFile, v { process.kill(); qWarning("TTAEnc process timed out <-- killing!"); + emit messageLogged("\nPROCESS TIMEOUT !!!"); bTimeout = true; break; } diff --git a/src/Decoder_FLAC.cpp b/src/Decoder_FLAC.cpp index 3a7521eb..009d8183 100644 --- a/src/Decoder_FLAC.cpp +++ b/src/Decoder_FLAC.cpp @@ -74,6 +74,7 @@ bool FLACDecoder::decode(const QString &sourceFile, const QString &outputFile, v { process.kill(); qWarning("FLAC process timed out <-- killing!"); + emit messageLogged("\nPROCESS TIMEOUT !!!"); bTimeout = true; break; } diff --git a/src/Decoder_MAC.cpp b/src/Decoder_MAC.cpp index 2b77d564..35cef1ab 100644 --- a/src/Decoder_MAC.cpp +++ b/src/Decoder_MAC.cpp @@ -74,6 +74,7 @@ bool MACDecoder::decode(const QString &sourceFile, const QString &outputFile, vo { process.kill(); qWarning("MAC process timed out <-- killing!"); + emit messageLogged("\nPROCESS TIMEOUT !!!"); bTimeout = true; break; } diff --git a/src/Decoder_MP3.cpp b/src/Decoder_MP3.cpp index e8de5db6..862f7f3e 100644 --- a/src/Decoder_MP3.cpp +++ b/src/Decoder_MP3.cpp @@ -73,6 +73,7 @@ bool MP3Decoder::decode(const QString &sourceFile, const QString &outputFile, vo { process.kill(); qWarning("mpg123 process timed out <-- killing!"); + emit messageLogged("\nPROCESS TIMEOUT !!!"); bTimeout = true; break; } diff --git a/src/Decoder_Musepack.cpp b/src/Decoder_Musepack.cpp index 4fdbf3f7..94ddb7d7 100644 --- a/src/Decoder_Musepack.cpp +++ b/src/Decoder_Musepack.cpp @@ -75,6 +75,7 @@ bool MusepackDecoder::decode(const QString &sourceFile, const QString &outputFil { process.kill(); qWarning("MpcDec process timed out <-- killing!"); + emit messageLogged("\nPROCESS TIMEOUT !!!"); bTimeout = true; break; } diff --git a/src/Decoder_Shorten.cpp b/src/Decoder_Shorten.cpp index e2cafb8f..311d7d25 100644 --- a/src/Decoder_Shorten.cpp +++ b/src/Decoder_Shorten.cpp @@ -76,6 +76,7 @@ bool ShortenDecoder::decode(const QString &sourceFile, const QString &outputFile { process.kill(); qWarning("Shorten process timed out <-- killing!"); + emit messageLogged("\nPROCESS TIMEOUT !!!"); bTimeout = true; break; } diff --git a/src/Decoder_Speex.cpp b/src/Decoder_Speex.cpp index 5d89add7..d5ddcf67 100644 --- a/src/Decoder_Speex.cpp +++ b/src/Decoder_Speex.cpp @@ -74,6 +74,7 @@ bool SpeexDecoder::decode(const QString &sourceFile, const QString &outputFile, { process.kill(); qWarning("SpeexDec process timed out <-- killing!"); + emit messageLogged("\nPROCESS TIMEOUT !!!"); bTimeout = true; break; } diff --git a/src/Decoder_TTA.cpp b/src/Decoder_TTA.cpp index ebf14b19..a598f4dd 100644 --- a/src/Decoder_TTA.cpp +++ b/src/Decoder_TTA.cpp @@ -76,6 +76,7 @@ bool TTADecoder::decode(const QString &sourceFile, const QString &outputFile, vo { process.kill(); qWarning("TTAEnc process timed out <-- killing!"); + emit messageLogged("\nPROCESS TIMEOUT !!!"); bTimeout = true; break; } diff --git a/src/Decoder_Vorbis.cpp b/src/Decoder_Vorbis.cpp index 1faca431..b0f69442 100644 --- a/src/Decoder_Vorbis.cpp +++ b/src/Decoder_Vorbis.cpp @@ -73,6 +73,7 @@ bool VorbisDecoder::decode(const QString &sourceFile, const QString &outputFile, { process.kill(); qWarning("OggDec process timed out <-- killing!"); + emit messageLogged("\nPROCESS TIMEOUT !!!"); bTimeout = true; break; } diff --git a/src/Decoder_WMA.cpp b/src/Decoder_WMA.cpp index acad94bb..92568681 100644 --- a/src/Decoder_WMA.cpp +++ b/src/Decoder_WMA.cpp @@ -84,6 +84,7 @@ bool WMADecoder::decode(const QString &sourceFile, const QString &outputFile, vo { process.kill(); qWarning("WmaWav process timed out <-- killing!"); + emit messageLogged("\nPROCESS TIMEOUT !!!"); bTimeout = true; break; } diff --git a/src/Decoder_WavPack.cpp b/src/Decoder_WavPack.cpp index b8c5ae63..d2c15835 100644 --- a/src/Decoder_WavPack.cpp +++ b/src/Decoder_WavPack.cpp @@ -74,6 +74,7 @@ bool WavPackDecoder::decode(const QString &sourceFile, const QString &outputFile { process.kill(); qWarning("WvUnpack process timed out <-- killing!"); + emit messageLogged("\nPROCESS TIMEOUT !!!"); bTimeout = true; break; } diff --git a/src/Encoder_AAC.cpp b/src/Encoder_AAC.cpp index 3843129e..86b12eb1 100644 --- a/src/Encoder_AAC.cpp +++ b/src/Encoder_AAC.cpp @@ -119,6 +119,7 @@ bool AACEncoder::encode(const QString &sourceFile, const AudioFileModel &metaInf { process.kill(); qWarning("NeroAacEnc process timed out <-- killing!"); + emit messageLogged("\nPROCESS TIMEOUT !!!"); bTimeout = true; break; } @@ -209,6 +210,7 @@ bool AACEncoder::encode(const QString &sourceFile, const AudioFileModel &metaInf { process.kill(); qWarning("NeroAacTag process timed out <-- killing!"); + emit messageLogged("\nPROCESS TIMEOUT !!!"); bTimeout = true; break; } diff --git a/src/Encoder_FLAC.cpp b/src/Encoder_FLAC.cpp index c9a9cdaf..c214df01 100644 --- a/src/Encoder_FLAC.cpp +++ b/src/Encoder_FLAC.cpp @@ -90,6 +90,7 @@ bool FLACEncoder::encode(const QString &sourceFile, const AudioFileModel &metaIn { process.kill(); qWarning("FLAC process timed out <-- killing!"); + emit messageLogged("\nPROCESS TIMEOUT !!!"); bTimeout = true; break; } diff --git a/src/Encoder_MP3.cpp b/src/Encoder_MP3.cpp index 81391ac2..059ddd47 100644 --- a/src/Encoder_MP3.cpp +++ b/src/Encoder_MP3.cpp @@ -147,6 +147,7 @@ bool MP3Encoder::encode(const QString &sourceFile, const AudioFileModel &metaInf { process.kill(); qWarning("LAME process timed out <-- killing!"); + emit messageLogged("\nPROCESS TIMEOUT !!!"); bTimeout = true; break; } diff --git a/src/Encoder_Vorbis.cpp b/src/Encoder_Vorbis.cpp index 56ba5ccd..998b18ba 100644 --- a/src/Encoder_Vorbis.cpp +++ b/src/Encoder_Vorbis.cpp @@ -121,6 +121,7 @@ bool VorbisEncoder::encode(const QString &sourceFile, const AudioFileModel &meta { process.kill(); qWarning("OggEnc process timed out <-- killing!"); + emit messageLogged("\nPROCESS TIMEOUT !!!"); bTimeout = true; break; } diff --git a/src/Filter_Downmix.cpp b/src/Filter_Downmix.cpp index a7bfd207..a5413e2d 100644 --- a/src/Filter_Downmix.cpp +++ b/src/Filter_Downmix.cpp @@ -76,6 +76,7 @@ bool DownmixFilter::apply(const QString &sourceFile, const QString &outputFile, { process.kill(); qWarning("SoX process timed out <-- killing!"); + emit messageLogged("\nPROCESS TIMEOUT !!!"); bTimeout = true; break; } diff --git a/src/Filter_Normalize.cpp b/src/Filter_Normalize.cpp index d9fec1f9..5bc8cd41 100644 --- a/src/Filter_Normalize.cpp +++ b/src/Filter_Normalize.cpp @@ -79,6 +79,7 @@ bool NormalizeFilter::apply(const QString &sourceFile, const QString &outputFile { process.kill(); qWarning("SoX process timed out <-- killing!"); + emit messageLogged("\nPROCESS TIMEOUT !!!"); bTimeout = true; break; } diff --git a/src/Filter_Resample.cpp b/src/Filter_Resample.cpp index 7855cc7c..bb69021b 100644 --- a/src/Filter_Resample.cpp +++ b/src/Filter_Resample.cpp @@ -79,6 +79,7 @@ bool ResampleFilter::apply(const QString &sourceFile, const QString &outputFile, { process.kill(); qWarning("SoX process timed out <-- killing!"); + emit messageLogged("\nPROCESS TIMEOUT !!!"); bTimeout = true; break; } diff --git a/src/Filter_ToneAdjust.cpp b/src/Filter_ToneAdjust.cpp index b9f98b55..e7bebe22 100644 --- a/src/Filter_ToneAdjust.cpp +++ b/src/Filter_ToneAdjust.cpp @@ -88,6 +88,7 @@ bool ToneAdjustFilter::apply(const QString &sourceFile, const QString &outputFil { process.kill(); qWarning("SoX process timed out <-- killing!"); + emit messageLogged("\nPROCESS TIMEOUT !!!"); bTimeout = true; break; }