Since indexing is supplemental, it can be made a background task that can occur at more or less any time. So we run it as soon as possible.
27 lines
572 B
C++
27 lines
572 B
C++
#include "index.h"
|
|
|
|
#include "codec/decoder.h"
|
|
|
|
IndexTask::IndexTask(StreamPtr stream) :
|
|
stream_(stream)
|
|
{
|
|
SetTitle(tr("Indexing %1:%2").arg(stream_->footage()->filename(), QString::number(stream_->index())));
|
|
}
|
|
|
|
void IndexTask::Action()
|
|
{
|
|
if (stream_->footage()->decoder().isEmpty()) {
|
|
emit Failed(QStringLiteral("Stream has no decoder"));
|
|
} else {
|
|
DecoderPtr decoder = Decoder::CreateFromID(stream_->footage()->decoder());
|
|
|
|
decoder->set_stream(stream_);
|
|
|
|
decoder->Open();
|
|
decoder->Index();
|
|
decoder->Close();
|
|
|
|
emit Succeeeded();
|
|
}
|
|
}
|