Definition at line 1052 of file mainRepository.cpp. References Impala::CmdOptions::GetInstance(), and ILOG_VAR. Referenced by mainRepository(). 01053 { 01054 ILOG_VAR(Impala.Application.Repository.DoCopyMpeg7Shot); 01055 CmdOptions& options = CmdOptions::GetInstance(); 01056 01057 /* 01058 Mpeg7DocLocator loc1 = GetMpeg7ShotLocator(options, true); 01059 Mpeg7DocLocator loc2 = GetMpeg7ShotLocator(options, false); 01060 VideoSet* videoSet = GetVideoSet(options, true); 01061 String container = loc1.GetContainer(); 01062 int nrDocs = (container == "ALL") ? videoSet->GetNrContainers() : 1; 01063 for (int i=0 ; i<nrDocs ; i++) 01064 { 01065 String cur = (container == "ALL") ? videoSet->GetContainer(i) : container; 01066 Quid quid = GetQuidVideo(videoSet, container); 01067 loc1.RawDataSetContainer(cur); 01068 loc1.SetQuid(quid); 01069 Mpeg7Doc* doc = Mpeg7DocRepository().Get(loc1); 01070 loc2.SetContainer(cur); 01071 loc2.SetQuid(quid); 01072 Mpeg7DocRepository().Add(loc2, doc); 01073 delete doc; 01074 } 01075 delete videoSet; 01076 */ 01077 }
Here is the call graph for this function: ![]()
|