Skip to content

Commit

Permalink
Fix issue #877
Browse files Browse the repository at this point in the history
 Regression on commit 5f43ab2
  • Loading branch information
jcdr428 committed May 11, 2024
1 parent 0329fb3 commit cb04552
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions tsMuxer/movDemuxer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -726,8 +726,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())
while (m_processedBytes - startPos < m_fileBlockSize && m_curChunk < chunks.size())
{
const int64_t offset = chunks[m_curChunk].first;
int64_t next;
Expand Down

0 comments on commit cb04552

Please sign in to comment.