Forget video end when more packets are added.

Good for looping videos, for example Burnout.
This commit is contained in:
Unknown W. Brackets 2013-12-14 11:33:32 -08:00
parent 20b81ef552
commit 3204ec94fb

View File

@ -340,6 +340,9 @@ int MediaEngine::addStreamData(u8* buffer, int addSize) {
openContext();
}
#endif // USE_FFMPEG
// We added data, so... not the end anymore?
m_isVideoEnd = false;
}
return size;
}