Home || Visual Search || Applications || Architecture || Important Messages || OGL || Src

void Impala::Application::Repository::DoDumpFrameHashes (  ) 

Definition at line 506 of file mainRepository.cpp.

References Impala::Core::Table::TableTem< Col1T, Col2T, Col3T, Col4T, Col5T, Col6T, Col7T, Col8T, Col9T >::Dump(), GetDataSetLocator(), Impala::CmdOptions::GetInstance(), GetVideoSet(), and ILOG_VAR.

Referenced by mainRepository().

00507 {
00508     ILOG_VAR(Impala.Application.Repository.DoDumpFrameHashes);
00509     CmdOptions& options = CmdOptions::GetInstance();
00510 
00511     Locator vidSetLocator = GetDataSetLocator(options, true);
00512     VideoSet* vidSet = GetVideoSet(options, true);
00513     if (vidSet == 0)
00514         return;
00515     int nrOfVideos = vidSet->NrFiles();
00516     for (int i = 0; i < nrOfVideos; i++)
00517     {
00518         FrameHashesLocator fhLoc(vidSetLocator, vidSet->GetContainer(i));
00519         Core::VideoSet::FrameHashes* hashTable = 
00520             FrameHashesRepository().Get(fhLoc);
00521         if (hashTable != 0)
00522         {
00523             hashTable->Dump();
00524             delete hashTable;
00525         }
00526     }
00527     delete vidSet;
00528 }

Here is the call graph for this function:


Generated on Thu Jan 13 09:15:46 2011 for ImpalaSrc by  doxygen 1.5.1