Definition at line 145 of file mainRepository.cpp. References Impala::Core::Column::Contains(), Impala::Persistency::VideoSetsRepository::GetInstance(), ILOG_ERROR, and ILOG_VAR. Referenced by DoCopyKeyframes(), DoCopySegmentation(), DoCopyStills(), DoCopyVideoSet(), DoDeleteMpeg7Shot(), DoDeleteVideoInfoFiles(), DoDiffFrameHashes(), DoDiffKeyframes(), DoDiffMpeg7Shot(), DoDiffSegmentation(), DoDiffStills(), DoDiffVideoSet(), DoDumpFrameHashes(), DoDumpKeyframes(), DoDumpMpeg7Shot(), DoDumpSegmentation(), DoDumpStills(), DoDumpVideoSet(), DoSyncVideoFiles(), and GetVideoSet(). 00146 { 00147 ILOG_VAR(Impala.Application.Repository.GetVideoSet); 00148 00149 Locator loc(locString, setName); 00150 VideoSet* vidSet = 0; 00151 if (VideoSetsRepository::GetInstance().Contains(setName)) 00152 { 00153 if (required) 00154 vidSet = VideoSetRepository().Get(loc); 00155 else if (VideoSetRepository().Exists(loc)) 00156 vidSet = VideoSetRepository().Get(loc); 00157 } 00158 else if (required) 00159 { 00160 ILOG_ERROR("Could not find " << loc); 00161 } 00162 return vidSet; 00163 }
Here is the call graph for this function: ![]()
|