Made a few fixes to the frame mapper

This commit is contained in:
Jonathan Thomas
2012-10-30 18:53:26 -05:00
parent 7fe9008cad
commit bc11635731
3 changed files with 20 additions and 2 deletions

View File

@@ -16,6 +16,17 @@ void FrameReady(int number)
int main()
{
// Create a reader
DummyReader r1(Framerate(24,1), 720, 480, 22000, 2, 5.0);
// Map frames
FrameMapper mapping(&r1, Framerate(60, 1), PULLDOWN_CLASSIC);
mapping.PrintMapping();
return 0;
// Create timeline
Timeline t(640, 360, Framerate(24,1));