Definition at line 763 of file mainRepository.cpp. References Impala::CmdOptions::GetBool(), Impala::CmdOptions::GetInstance(), GetKeyframesLocator(), GetVideoSet(), and ILOG_VAR. Referenced by mainRepository(). 00764 { 00765 ILOG_VAR(Impala.Application.Repository.DoCopyKeyframes); 00766 CmdOptions& options = CmdOptions::GetInstance(); 00767 00768 KeyframesLocator loc1 = GetKeyframesLocator(options, true); 00769 VideoSet* vidSet = GetVideoSet(options, true); 00770 Keyframes* keys = KeyframesRepository().Get(loc1, vidSet); 00771 00772 KeyframesLocator loc2 = GetKeyframesLocator(options, false); 00773 if (options.GetBool("sync")) 00774 KeyframesRepository().Sync(loc2, keys); 00775 else 00776 KeyframesRepository().Add(loc2, keys); 00777 delete keys; 00778 delete vidSet; 00779 }
Here is the call graph for this function: ![]()
|