108 lines
2.7 KiB
C++
108 lines
2.7 KiB
C++
///////////////////////////////////////////////////////////////////////////////
|
|
// Simple x264 Launcher
|
|
// Copyright (C) 2004-2012 LoRd_MuldeR <MuldeR2@GMX.de>
|
|
//
|
|
// This program is free software; you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation; either version 2 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// This program is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU General Public License along
|
|
// with this program; if not, write to the Free Software Foundation, Inc.,
|
|
// 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
//
|
|
// http://www.gnu.org/licenses/gpl-2.0.txt
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
#include "thread_encode.h"
|
|
#include "global.h"
|
|
|
|
EncodeThread::EncodeThread(const QString &sourceFileName, const QString &outputFileName)
|
|
:
|
|
m_jobId(QUuid::createUuid()),
|
|
m_sourceFileName(sourceFileName),
|
|
m_outputFileName(outputFileName)
|
|
{
|
|
m_abort = false;
|
|
}
|
|
|
|
EncodeThread::~EncodeThread(void)
|
|
{
|
|
}
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
// Thread entry point
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
void EncodeThread::run(void)
|
|
{
|
|
try
|
|
{
|
|
encode();
|
|
}
|
|
catch(char *msg)
|
|
{
|
|
emit messageLogged(m_jobId, QString("EXCEPTION ERROR: ").append(QString::fromLatin1(msg)));
|
|
}
|
|
catch(...)
|
|
{
|
|
emit messageLogged(m_jobId, QString("EXCEPTION ERROR !!!"));
|
|
}
|
|
}
|
|
|
|
void EncodeThread::encode(void)
|
|
{
|
|
Sleep(1500);
|
|
|
|
for(int i = 0; i <= 100; i += 5)
|
|
{
|
|
emit progressChanged(m_jobId, i);
|
|
emit statusChanged(m_jobId, (i % 2) ? JobStatus_Indexing : JobStatus_Running_Pass1);
|
|
emit messageLogged(m_jobId, QUuid::createUuid().toString());
|
|
|
|
for(int j = 0; j < 3; j++)
|
|
{
|
|
emit detailsChanged(m_jobId, QUuid::createUuid().toString());
|
|
Sleep(120);
|
|
}
|
|
|
|
if(m_abort)
|
|
{
|
|
Sleep(500);
|
|
emit statusChanged(m_jobId, JobStatus_Aborted);
|
|
return;
|
|
}
|
|
}
|
|
|
|
Sleep(1500);
|
|
|
|
for(int i = 0; i <= 100; i += 5)
|
|
{
|
|
emit progressChanged(m_jobId, i);
|
|
emit statusChanged(m_jobId, (i % 2) ? JobStatus_Indexing : JobStatus_Running_Pass2);
|
|
emit messageLogged(m_jobId, QUuid::createUuid().toString());
|
|
|
|
for(int j = 0; j < 3; j++)
|
|
{
|
|
emit detailsChanged(m_jobId, QUuid::createUuid().toString());
|
|
Sleep(120);
|
|
}
|
|
|
|
if(m_abort)
|
|
{
|
|
Sleep(500);
|
|
emit statusChanged(m_jobId, JobStatus_Aborted);
|
|
return;
|
|
}
|
|
}
|
|
|
|
Sleep(250);
|
|
|
|
emit statusChanged(m_jobId, JobStatus_Completed);
|
|
}
|