Small fix.

This commit is contained in:
LoRd_MuldeR 2016-05-08 20:56:17 +02:00
parent 8dd7c3d0ed
commit 572a8df9a4
2 changed files with 2 additions and 2 deletions

View File

@ -142,7 +142,7 @@ public:
virtual QStringList supportedOutputFormats(void) const
{
QStringList extLst;
extLst << "mp4";
extLst << "mp4" << "264" << "hevc";
return extLst;
}

View File

@ -275,7 +275,7 @@ QModelIndex JobListModel::insertJob(EncodeThread *thread)
}
if(!unique)
{
jobName = QString("%1 %2 (%3)").arg(QFileInfo(thread->sourceFileName()).completeBaseName().simplified(), QString::number(n++), config);
jobName = QString("%1 %2 [%3]").arg(QFileInfo(thread->sourceFileName()).completeBaseName().simplified(), QString::number(n++), config);
continue;
}
break;