| 
 
 Definition at line 52 of file mainVideo.cpp. References Impala::Core::Stream::RgbDataSrc::FrameNr(), gFramesDone, gSrc, gStatusBuf, gTimer, and Impala::Timer::SplitTime(). Referenced by DemoVideo(). 00053 { 00054 double timeVal = gTimer.SplitTime(); 00055 double fps = (double) gFramesDone / timeVal; 00056 std::ostrstream statusStream; 00057 statusStream << "FrameNr = " << gSrc->FrameNr() << ", did " 00058 << gFramesDone << " frames in " << timeVal << " sec = " 00059 << fps << " fps" << std::ends; 00060 strcpy(gStatusBuf, statusStream.str()); 00061 statusStream.freeze(false); 00062 } 
 Here is the call graph for this function:  
 | 
 1.5.1
 1.5.1