Definition at line 209 of file mainUtil.cpp. References Impala::Core::Table::TableTem< Col1T, Col2T, Col3T, Col4T, Col5T, Col6T, Col7T, Col8T, Col9T >::Dump(), Impala::CmdOptions::GetArg(), Impala::CmdOptions::GetInstance(), Impala::CmdOptions::GetInt(), Impala::Core::VideoSet::Stills::GetNrShots(), Impala::Core::VideoSet::Stills::GetNrStills(), Impala::Core::VideoSet::Stills::GetNrVideos(), ILOG_INFO, ILOG_VAR, and Impala::Core::VideoSet::MakeVideoSet(). Referenced by mainUtil(). 00210 { 00211 typedef Core::VideoSet::VideoSet VideoSet; 00212 typedef Core::VideoSet::Stills Stills; 00213 00214 ILOG_VAR(Impala.Application.Util.DoDumpStills); 00215 CmdOptions& options = CmdOptions::GetInstance(); 00216 String fName = options.GetArg(1); 00217 VideoSet* vidSet = Core::VideoSet::MakeVideoSet(fName); 00218 Stills stills(vidSet, "stills"); 00219 ILOG_INFO("nrVideos = " << stills.GetNrVideos()); 00220 ILOG_INFO("nrShots = " << stills.GetNrShots()); 00221 ILOG_INFO("nrStills = " << stills.GetNrStills()); 00222 //stills.DumpGroups(); 00223 stills.Dump(options.GetInt("start"), options.GetInt("end")); 00224 }
Here is the call graph for this function:
|