todo stuff
Originally committed to SVN as r2405.
This commit is contained in:
parent
4683c5a9d0
commit
6c571dfe17
2 changed files with 4 additions and 3 deletions
|
@ -60,7 +60,7 @@ AVSValue __cdecl CreateFFIndex(AVSValue Args, void* UserData, IScriptEnvironment
|
||||||
// 1: Index generated
|
// 1: Index generated
|
||||||
// 2: Index forced to be overwritten
|
// 2: Index forced to be overwritten
|
||||||
|
|
||||||
FrameIndex *Index;
|
FrameIndex *Index = NULL;
|
||||||
if (OverWrite || !(Index = FFMS_ReadIndex(CacheFile, ErrorMsg, MsgSize))) {
|
if (OverWrite || !(Index = FFMS_ReadIndex(CacheFile, ErrorMsg, MsgSize))) {
|
||||||
if (!(Index = FFMS_MakeIndex(Source, IndexMask, DumpMask, AudioFile, true, NULL, NULL, ErrorMsg, MsgSize)))
|
if (!(Index = FFMS_MakeIndex(Source, IndexMask, DumpMask, AudioFile, true, NULL, NULL, ErrorMsg, MsgSize)))
|
||||||
Env->ThrowError("FFIndex: %s", ErrorMsg);
|
Env->ThrowError("FFIndex: %s", ErrorMsg);
|
||||||
|
|
|
@ -66,8 +66,9 @@ public:
|
||||||
|
|
||||||
~FFAudioContext() {
|
~FFAudioContext() {
|
||||||
delete W64W;
|
delete W64W;
|
||||||
if (CTX)
|
// FIXME, why is there an access violation here?
|
||||||
avcodec_close(CTX);
|
// if (CTX)
|
||||||
|
// avcodec_close(CTX);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue