Skip to content

Commit

Permalink
Mov: add 1 second sleep after file seek
Browse files Browse the repository at this point in the history
  • Loading branch information
jcdr428 committed Oct 2, 2023
1 parent f11bc1b commit 08d1a85
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions tsMuxer/ioContextDemuxer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,7 @@ void IOContextDemuxer::skip_bytes(const int64_t size)
{
const int64_t offset = skipLeft - 2LL * m_fileBlockSize;
m_bufferedReader->incSeek(m_readerID, offset);
this_thread::sleep_for(1s);
m_processedBytes += offset;
skipLeft = 2LL * m_fileBlockSize;
}
Expand Down

1 comment on commit 08d1a85

@jcdr428
Copy link
Collaborator Author

@jcdr428 jcdr428 commented on 08d1a85 Oct 2, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hopefully it will fix issue #733.

Please sign in to comment.