Skip to content

Commit

Permalink
clang-format check
Browse files Browse the repository at this point in the history
  • Loading branch information
jcdr428 committed Aug 9, 2023
1 parent 9c0cebc commit fefb0f7
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions tsMuxer/tsMuxer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit fefb0f7

Please sign in to comment.