fix duration (seconds per frame, not frames per second)

This commit is contained in:
Glenn Maynard
2005-10-20 21:07:25 +00:00
parent e1d7b101fd
commit d17aaf31fb
@@ -271,7 +271,7 @@ float MovieDecoder_Theora::GetTimestamp() const
float MovieDecoder_Theora::GetFrameDuration() const
{
return (float) m_TheoraInfo.fps_numerator / m_TheoraInfo.fps_denominator;
return (float) m_TheoraInfo.fps_denominator / m_TheoraInfo.fps_numerator;
}
bool MovieDecoder_Theora::SkippableFrame() const