clang format check

This commit is contained in:
jcdr428 2022-06-13 10:27:16 +01:00
parent b73670de23
commit 13b843224b

View File

@ -646,7 +646,8 @@ void TsMuxerWindow::onTsMuxerCodecInfoReceived()
}
if (fileDuration == 0 && !mplsFileList.isEmpty())
{
foreach (const MPLSFileInfo &mplsFile, mplsFileList) fileDuration += mplsFile.duration;
foreach (const MPLSFileInfo &mplsFile, mplsFileList)
fileDuration += mplsFile.duration;
}
m_updateMeta = true;
@ -1326,7 +1327,8 @@ void TsMuxerWindow::updateCustomChapters()
offset = 0;
ChapterList chapters = item->data(ChaptersRole).value<ChapterList>();
foreach (double chapter, chapters) chaptersSet << qint64((chapter + offset) * 1000000);
foreach (double chapter, chapters)
chaptersSet << qint64((chapter + offset) * 1000000);
prevDuration = item->data(FileDurationRole).toDouble();
}