Semi-fix for ffms2

Originally committed to SVN as r2428.
This commit is contained in:
Rodrigo Braz Monteiro 2008-10-28 04:39:10 +00:00
parent 453f3ad816
commit acfb815484

View file

@ -79,18 +79,23 @@ void FFmpegSourceVideoProvider::LoadVideo(Aegisub::String filename, double fps)
// make sure we don't have anything messy lying around // make sure we don't have anything messy lying around
Close(); Close();
wxString FileNameWX(filename.c_str(), wxConvFile); wxString FileNameWX = wxFileName(wxString(filename.c_str(), wxConvFile)).GetShortPath();
// generate a name for the cache file // generate a name for the cache file
wxString CacheName = wxString(GetCacheFilename(filename).c_str(),wxConvFile); wxString CacheName = GetCacheFilename(filename);
// try to read index // try to read index
Index = FFMS_ReadIndex(CacheName.char_str(), FFMSErrorMessage, MessageSize); Index = FFMS_ReadIndex(CacheName.char_str(), FFMSErrorMessage, MessageSize);
if (Index == NULL) { if (Index == NULL) {
// index didn't exist or was invalid, we'll have to (re)create it // index didn't exist or was invalid, we'll have to (re)create it
try { try {
// ignore audio decoding errors here, we don't care right now try {
Index = DoIndexing(Index, FileNameWX, CacheName, FFMSTrackMaskAll, true); // ignore audio decoding errors here, we don't care right now
Index = DoIndexing(Index, FileNameWX, CacheName, FFMSTrackMaskAll, true);
} catch (...) {
// Try without audio
Index = DoIndexing(Index, FileNameWX, CacheName, FFMSTrackMaskNone, true);
}
} catch (wxString temp) { } catch (wxString temp) {
ErrorMsg << temp; ErrorMsg << temp;
throw ErrorMsg; throw ErrorMsg;