summaryrefslogtreecommitdiffstats
path: root/imagegui.cpp
blob: 5180c22c001f6aafb66afa8768af7fd483391e9d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#include "imagegui.h"
#include "dvdimagejob.h"
#include <dvdcss/dvdcss.h>
#include <QPushButton>
#include <QProgressBar>
#include <QVBoxLayout>
#include <QFile>
#include <QtConcurrentRun>

ImageGui::ImageGui()
{
	Video *video = new Video();
	Job *job = video->nextJob();
	m_first = true;
	connect(job, SIGNAL(extractProgress(int,int)), this, SLOT(extractProgress(int,int)));
	job->runJob();
}
void ImageGui::extractProgress(int current, int maximum)
{
	if (m_first) {
		m_startTime.start();
		m_first = false;
	} else {
		long long currentBytes = (long long)current * DVDCSS_BLOCK_SIZE;
		long long maximumBytes = (long long)maximum * DVDCSS_BLOCK_SIZE;
		double bytesPerMillisecond = (double)currentBytes / (double)m_startTime.elapsed();
		long long millisecondsRemaining = (long long)((maximumBytes - currentBytes) / bytesPerMillisecond);
		setWindowTitle(QString("AnyRip: %1 of %2 megabytes (%3 mb/s, %4 remaining)")
							 .arg(QString::number((double)currentBytes / 1024.0 / 1024.0, 'f', 2))
							 .arg(QString::number((double)maximumBytes / 1024.0 / 1024.0, 'f', 2))
							 .arg(QString::number(bytesPerMillisecond * (1000.0 / 1024.0 / 1024.0), 'f', 2))
							 .arg(QTime().addMSecs(millisecondsRemaining).toString()));
	}
	setMaximum(maximum);
	setValue(current);
}