From fefb0f77e7e8f0b1bad1c0e24cb27dd31f073157 Mon Sep 17 00:00:00 2001 From: jcdr428 Date: Wed, 9 Aug 2023 21:49:12 +0100 Subject: [PATCH] clang-format check --- tsMuxer/tsMuxer.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tsMuxer/tsMuxer.cpp b/tsMuxer/tsMuxer.cpp index 6f091393..804b236c 100644 --- a/tsMuxer/tsMuxer.cpp +++ b/tsMuxer/tsMuxer.cpp @@ -645,8 +645,7 @@ void TSMuxer::buildPesHeader(const int pesStreamID, AVPacket& avPacket, int pid) const int bufLen = pesPacket->getHeaderLength() + additionDataSize; m_pesData.resize(bufLen); memcpy(m_pesData.data(), tmpBuffer, bufLen); - for (auto& i : tmpPriorityData) - m_priorityData.emplace_back(i.first + pesPacket->getHeaderLength(), i.second); + for (auto& i : tmpPriorityData) m_priorityData.emplace_back(i.first + pesPacket->getHeaderLength(), i.second); } void TSMuxer::addData(const int pesStreamID, const int pid, AVPacket& avPacket)