Implemented the Close() method, so it closes all clips' readers on the timeline

This commit is contained in:
Jonathan Thomas
2012-10-10 00:52:47 -05:00
parent d840297572
commit 9d01dd7900
2 changed files with 13 additions and 1 deletions

View File

@@ -34,9 +34,12 @@ int main()
t.AddClip(&c3);
// Request frames
for (int x=0; x<330; x++)
for (int x=0; x<133; x++)
t.GetFrame(x);
// Close timeline
t.Close();
cout << "Successfully Finished Timeline DEMO" << endl;
return 0;