Output warning message to the log when a process has to be killed due to a timeout.

This commit is contained in:
LoRd_MuldeR 2011-02-28 17:53:17 +01:00
parent 14a129f058
commit aa02ad742c
23 changed files with 25 additions and 2 deletions

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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