Remove the 5 packet min for openContext.

Should be safer, and with retrying, it's no longer necessary.
This commit is contained in:
Unknown W. Brackets 2014-01-01 21:00:29 -08:00
parent 2c38805791
commit 82a7680bab

View File

@ -344,7 +344,7 @@ int MediaEngine::addStreamData(u8* buffer, int addSize) {
m_demux->demux(m_audioStream);
}
#ifdef USE_FFMPEG
if (!m_pFormatCtx && m_pdata->getQueueSize() >= 2048 * 5) {
if (!m_pFormatCtx && m_pdata->getQueueSize() >= 2048) {
m_pdata->get_front(m_mpegheader, sizeof(m_mpegheader));
int mpegoffset = bswap32(*(int*)(m_mpegheader + 8));
m_pdata->pop_front(0, mpegoffset);