mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Don't try to seek the video with too few packets.
Conservatively we seem to need approximately 6, which any video ought to be longer than.
This commit is contained in:
parent
057cad228c
commit
20b81ef552
1 changed files with 1 additions and 1 deletions
|
@ -333,7 +333,7 @@ int MediaEngine::addStreamData(u8* buffer, int addSize) {
|
|||
m_demux->demux(m_audioStream);
|
||||
}
|
||||
#ifdef USE_FFMPEG
|
||||
if (!m_pFormatCtx) {
|
||||
if (!m_pFormatCtx && m_pdata->getQueueSize() >= 2048 * 6) {
|
||||
m_pdata->get_front(m_mpegheader, sizeof(m_mpegheader));
|
||||
int mpegoffset = bswap32(*(int*)(m_mpegheader + 8));
|
||||
m_pdata->pop_front(0, mpegoffset);
|
||||
|
|
Loading…
Add table
Reference in a new issue