Skip to content

Commit

Permalink
Fix clang format check
Browse files Browse the repository at this point in the history
  • Loading branch information
jcdr428 committed May 3, 2024
1 parent 49a703f commit 5f73a18
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tsMuxer/movDemuxer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ class MovParsedAudioTrackData final : public ParsedTrackPrivData
if (frameSize == 0)
frameSize = m_sc->m_index[m_sc->m_indexCur++];
if (buff + frameSize > srcEnd)
break;
break;
if (isAAC)
{
m_aacRaw.m_channels = static_cast<uint8_t>(m_sc->channels);
Expand Down Expand Up @@ -727,7 +727,7 @@ int MovDemuxer::simpleDemuxBlock(DemuxedData& demuxedData, const PIDSet& accepte
}
const int64_t startPos = m_processedBytes;
while (m_processedBytes - startPos < m_fileBlockSize && m_curChunk < chunks.size() &&
m_curChunk < m_mdat_data.size())
m_curChunk < m_mdat_data.size())
{
const int64_t offset = chunks[m_curChunk].first;
int64_t next;
Expand Down

0 comments on commit 5f73a18

Please sign in to comment.